$(document).ready(function(){
	
	//Fancy Box
	$(".fancybox").fancybox({
		'showCloseButton'	: false,
		'zoomSpeedIn'		: 300,
		'zoomSpeedOut'		: 300,
		'callbackOnShow'	: function(){
			$("div#fancy_content").mouseover(function(e){
				e.preventDefault();
				//alert($("img#fancy_img").attr('src'));
				//$(this).protectImage();
			})
		}
	});
	
	var viewportHeight = window.innerHeight ? window.innerHeight : $(window).height();
	var centerVertical = Math.ceil(viewportHeight/2) - Math.ceil($('div#container').height()/2);
	
	var viewportWidth = window.innerWidth ? window.innerWidth : $(window).width();
	var centerHorisontal = Math.ceil(viewportWidth/2) - Math.ceil($('div#container').width()/2);
	
	$("div#loader").css("margin-top", centerVertical+20);
	$("div#loader").css("margin-right", centerHorisontal+20);
	
	$("div#container").css("margin-top", centerVertical);
	
	$("div#logo").attr("class", "logo_black");
	
	//RIGHT CLICK DISABLE
	function clickIE4(){
		if (event.button==2){
			return false;
		}
	}
	
	function clickNS4(e){
		if (document.layers||document.getElementById&&!document.all){
			if (e.which==2||e.which==3){
				return false;
			}
		}
	}
	 
	if (document.layers){
		document.captureEvents(Event.MOUSEDOWN);
		document.onmousedown=clickNS4;
	}
	else if (document.all&&!document.getElementById){
		document.onmousedown=clickIE4;
	}
	
	document.oncontextmenu=new Function("return false");
	
});
