jQuery(document).ready(function() {  
   jQuery('#ypg411').click(function(e){
   	 	e.preventDefault();
   	 	jQuery('.ypg411').toggle("slow");   	 	
   });
   jQuery('.ypg411').hover(function(){
   
   },
   function(){
   		jQuery(this).hide("slow");
   });
});