function mostrargarantia() { 
jQuery.noConflict();
   jQuery("#garantia").fadeIn('slow');
   //temporizador, para que no aparezca de golpe 

} //checkHover	

jQuery(document).ready(function (){
//Conseguir valores de la img 
   var img_w = jQuery("#garantia img").width() + 10; 
   var img_h = jQuery("#garantia img").height() + 40; 

//Darle el alto y ancho 
   jQuery("#garantia").css('width', img_w + 'px'); 
   jQuery("#garantia").css('height', img_h + 'px'); 
    
   //Esconder el popup 
   jQuery("#garantia").hide();

 //Consigue valores de la ventana del navegador 
   var w = jQuery(this).width(); 
   var h = jQuery(this).height(); 
    
   //Centra el popup    
   w = (w+500) - (img_w); 
   h = (h+200) - (img_h); 
   jQuery("#garantia").css("left",w + "px"); 
   jQuery("#garantia").css("top",h + "px");


});

function cerrargarantia(){
	jQuery.noConflict();
	jQuery("#garantia").fadeIn('slow');
	 //Esconder el popup 
   jQuery("#garantia").hide();
}


