jQuery().ready(function(){
	$(".m").hover(function(){	
		$('.sm').hide();
		$(".m").removeClass('hover');
		
		$('.'+$(this).attr('id')).show();
		$(this).addClass('hover');
	});
		
	$(".sm").mouseleave(function(){
		$('.sm').hide();
		$(".m").removeClass('hover');
	});
	$(".sm").hover(function(){	
		$(this).show();
		$(this).addClass('hover');
	});
});




