jQuery(document).ready(function(){
   // función para hacer que bote mensaje
    bounceSlogan();
   
   //inicializar animación cielo 
   jQuery('#sky').pan({fps: 30, speed: .5, dir: 'right'});
   
   

             
});

function ini_video(url_video){
	//si existe el selector div video insertar en el el video
	if(jQuery('#video'))
	{
	var params = {
	   loop: "true",
	   base: "flash",
	   bgcolor: "#ffffff",
	   wmode: "transparent"
	};
	swfobject.embedSWF(url_video+"/flash/video.swf", "video", "371", "375", "6.0.65", false, false, params, false);
	}
}


function bounceSlogan() {
    jQuery('#slogan').effect("bounce", 700); 
    setTimeout(bounceSlogan, 8000);
}
                
