$(document).ready(function() {		
		$("#standOutHover").hover(
				function() { $(this).expose({opacity: 0.4, api: true, loadSpeed: 500, closeSpeed: 500}).load(); },
		    function() {	$(this).expose().close();	}
   		);
});

