/*
$(document).ready(function () {
	$("#mmu li").hover(
	  function () {
		  $("img",this).attr('src','img/tab-' + this. + '-mo.gif');
		  //$(".subm:not(.selected)").hide();
		  //$(this).parent().parent().find(".subm").show();
	  }, 
	  function () {
		  //$(this).attr('src','img/tab-' + $(this).attr('alt') + '.gif');
		  //$(".subm:not(.selected)").hide();
	  }
	);
	$(".subm:not(.selected)").hide();
});
*/
$(document).ready(function () {
	$("#men img:not(.selected)").hover(
	  function () {
		  $(this).attr('src','img/tab-' + $(this).attr('alt') + '-mo.gif');
		  //$(".subm:not(.selected)").hide();
		  //$(this).parent().parent().find(".subm").show();
	  }, 
	  function () {
		  $(this).attr('src','img/tab-' + $(this).attr('alt') + '.gif');
		  //$(".subm:not(.selected)").hide();
	  }
	);
	$(".subm:not(.selected)").hide();
});

