/**
 * load javascript library (using JQuery FrameWork) for crabs.com
 * @author Hugo Gomez Mac Gregor hugo@pymenta.com
 */

$().ready(function() {
	$('#splashScreen').jqm({overlay:50,onShow:myOpen,onHide:myClose});
	$('#ecatalog').jqm({overlay:50,onShow: loadInIframeModal, onHide:loadOutIframeModal});

	
	$("#Sunday").click(function(){$('#splashScreen').jqmShow();});
	$("#jqmClose, .jqmOverlay, #splashScreen").click(function(){
				$('#splashScreen').jqmHide();
		});
	
	$("#Sunday").click(function(){$('#splashScreen').jqmShow();});	
	$("#splashScreen").click(function(){$('#splashScreen').jqmHide();});	
		
	$("a.ecatalog").click(function(){$('#ecatalog').jqmShow();});	
	$("#ecatalog").click(function(){$('#ecatalog').jqmHide();});
		

	});
	

var myOpen=function(h){
$('#splashScreen iframe').attr("src","/video/videopatmos2009.html");
$("#carrousel").hide(function(){h.o.fadeIn(666,function(){$('#splashScreen').fadeIn(666);});});


} 

var myClose=function(h){
h.o.fadeOut(666,function(){$('#splashScreen').fadeOut(666,function(){$("#carrousel").show();});});
$('#splashScreen iframe').attr("src","");
} 


var loadInIframeModal = function(hash){
$('#ecatalog iframe').attr("src","/E-Catalog/Catalogo.html");
	hash.o.fadeIn(666,function(){$('#ecatalog').fadeIn(666);});
}

var loadOutIframeModal = function(hash){
$('#ecatalog iframe').attr("src","");
	hash.o.fadeOut(666,function(){$('#ecatalog').fadeOut(666);});
}

 



