if($.browser.mobile) {
	$(".top-menu ul li").click(function(){
		$('.top-menu ul li a img').hide();
		$(this).find('img').show();
	});
}
else {
	$(".top-menu ul li").mouseenter(function(){
		$(this).find('img').show();
	});
	$(".top-menu ul li").mouseleave(function(){
		$(this).find('img').hide();
	});
}
