$(document).ready(function(){

    $(".M").mouseenter(function(){
		var did = "." + $(this).find('a').find('img').attr('class');
		var uid = "." + $(this).find('a').find('img').next().attr('class');
		$(this).find(did).hide();
		$(this).find(uid).show();
    }).mouseleave(function(){
		var did = "." + $(this).find('a').find('img').attr('class');
		var uid = "." + $(this).find('a').find('img').next().attr('class');
		$(this).find(did).show();
		$(this).find(uid).hide();
    });

   var sdid = "." + $('.M').find('#selected').find('img').attr('class');
   var suid = "." +$('.M').find('#selected').find('img').next().attr('class');
   $(this).find(sdid).hide();
   $(this).find(suid).show();
});