// JavaScript Document
$(document).ready(function(){
	$('.navBar_item > img').click(function(){	
	});
	
	$('.navBar_item > img').hover(function(){
		hoverImg=$(this).attr('alt');
		normalImg=$(this).attr('src');
		$(this).attr('alt',normalImg);
		$(this).attr('src',hoverImg);
	},function(){
		hoverImg=$(this).attr('alt');
		normalImg=$(this).attr('src');
		$(this).attr('alt',normalImg);
		$(this).attr('src',hoverImg);		
	});	
});
