// JavaScript Document

//CARGA BANNER Y PRESENTACION PAGINA
/*$(document).ready(function(){
	if (pag == "home") {$('#contenedor').hide();};
	$('#contenido').hide();
	$('#imagenBanner').hide();
	$('#contenedor').fadeIn("slow", function () {
	$('#imagenBanner').fadeIn("slow", function () {
	$('#contenido').slideDown("slow")}	
	);
});	
});	
});*/

// CUFON
Cufon.replace('h1'); // Works without a selector engine



// SHADOWBOX
Shadowbox.loadSkin('classic', 'js/src/skin');
Shadowbox.loadLanguage('es', 'js/src/lang');
Shadowbox.loadPlayer(['flv', 'html', 'iframe', 'img', 'qt', 'swf', 'wmp'], 'js/src/player');

/*window.onload = function(){
    Shadowbox.init();
};*/

$(document).ready(function(){	
	Shadowbox.init();
});

// MENU
$(document).ready(function(){	
	//ROLOVERS
	$('#menu a')
	.css( {backgroundPosition: "0 0"} )
	.mouseover(function(){
		$(this).stop().animate(
			{backgroundPosition:"(0 -30px)"}, 
			{duration:300});
		})
	.mouseout(function(){
		$(this).stop().animate(
			{backgroundPosition:"(0 0)"}, 
			{duration:300})
		})			   
	  //CLICKS					   
      $('#menu .botonmenu a').click(function() {
	  pagina=this.href;
      this.href='#';
	  if (pag == "home") {$("#banner").animate({"height": "200px"}, "slow");};
	  $('#imagenBanner').fadeOut("slow");
      $('#contenido').slideUp("slow", function() {										 
	   window.location=pagina;}
		);
	}); 
});



