﻿//loader
//QueryLoader.selectorPreload = "body";
		//QueryLoader.init();
		$(document).ready(function(){
	$(document).ready(function () {
		$('#premiere').fadeIn(800);
		$('#bgPage').fadeIn(6000);
			$('.footer').fadeIn(8000);
		});
		});
//Hover
		$(document).ready(function(){
$("#bgPage img, #premiere img").fadeTo("slow", 1.0);
$("#bgPage img, #premiere img")
.hover(function(){
$(this).fadeTo("slow", 0.2);
},function(){
$(this).fadeTo("slow", 1.0);
});
});
//Modal vindu trailer
$(document).ready(function() {	
	$('a[name=modal]').click(function(e) {
		e.preventDefault();
		var id = $(this).attr('href');
		var maskHeight = $(document).height();
		var maskWidth = $(window).width();
		$('#mask').css({'width':maskWidth,'height':maskHeight});
		$('#mask').fadeIn(1000);	
		$('#mask').fadeTo("slow",0.8);	
			var winH = $(window).height();
		var winW = $(window).width();
       		$(id).css('top',  winH/2-$(id).height()/2);
		$(id).css('left', winW/2-$(id).width()/2);
			$(id).fadeIn(2000); 
	
	});
	$('.window .close').click(function (e) {
			e.preventDefault();		
		$('#mask').hide();
		$('.window').hide();
	});
	$('#mask').click(function () {
		$(this).hide();
		$('.window').hide();
	});			
	
});