$(document).ready(function(){
	$(".TM > li > a").hover(function(){
		$(".SM").hide();
		//TMIMGstr = $(this).children('img').attr('src');
		//$(this).children('img').attr('src', TMIMGstr.replace('Off','On'));
		$(this).next().show();
	},function() {	
		//$(this).children('img').attr('src', TMIMGstr.replace('On','Off'));
	});
	
	$(".TM > li > a").focus(function(){
		$(this).next().show();
	})
	
	$(".SM").mouseleave(function(){
		$(".SM").hide();
	});

});
