$(document).ready(function() {
	$("#header").show('slow');
   $("#b_mensaje").click(function() {
    	popupw('cotizaciones/index.php','503','520');
   });
      $("#b_mensaje").mouseout(function() {
	  
	  $("#celebrar").hide('slow');
	  
    	//celebra('none');
   });
       $("#b_mensaje").mouseover(function() {
	   $("#celebrar").show('slow');
    	//celebra('block');
   });
 });