$(document).ready(function() { 
	$("div.manufacturerControlPanel ul#scopeLinkContainer li a").hover(
	    function() {	        
            $(this).children("div").show();	       
	    },
	    function() {
	        $(this).children("div").hide();
	    }
	);
});
