$(document).ready(function(){//Inicio JQuery
//easy Bg Resize
/*$("body").ezBgResize({
        img : "img/bg/bg-web-1920.jpg", // Relative path example. You could also use an absolute url (http://...).
        opacity : 0.5, // Opacity. 1 = 100%. This is optional.
        center : true // Boolean (true or false). This is optional. Default is true.
    });*/
	
//Configura AJAX para caracteres especiales
$.ajaxSetup({
'beforeSend' : function(xhr) {
try{
xhr.overrideMimeType('text/html; charset=iso-8859-1');
}
catch(e){
 
 
}
}});
//Scripts generales	
var resSpeed = 1000;

//Modificacion del layout según el tamaño del navegador
winResize(0); //Lo ejecuta 1 vez al cardar el documento

setInterval(function(){
	winResize(resSpeed);
}, resSpeed);

//Galeria del HOME
hGalStart();

//Boton de Info y animación
var altoInfo;
var altoDif;

masInfo();

//Activar galerias
startGal();
fancyOn();

//Acomodar thumnails
showThumbs();

//RollOvers
var $izClick = 0; 

izHover();

//Que hacemos
qhAcor();

//Fondos
selctBg();

//Formulario
form();

});//Fin JQuery
