$(document).ready(function() { 
	$(".sh").bind('mouseover', function(e) { 
        var title = $(this).attr('title');
        $('.'+title).show();
		$(this).addClass('hover');
	});
    
	$(".sh").bind('mouseout', function(e) { 
        var title = $(this).attr('title');
		$('.'+title).hide();
		$(this).removeClass('hover');
    });
});

