

$(document).ready(function() {
	$(".top-menu a").hover(function(){
	    //$(this).addClass("hover");
		$(this).children("img").hide();
		$(this).children(".hover").show();
		},function(){
			$(this).children("img").show();
			$(this).children(".hover").hide();	
		});
});

