/***************************
@Author: Adrian "yEnS" Mato Gondelle
@website: www.yensdesign.com
@email: yensamg@gmail.com
@license: Feel free to use it, but keep this credits please!					
***************************/

//SETTING UP OUR POPUP
//0 means disabled; 1 means enabled;
var popupStatus = 0;

//loading popup with jQuery magic!
function loadPopup(){
	//loads popup only if it is disabled
	if(popupStatus==0){
		$("#backgroundPopup").css({
			"opacity": "0.7",
			"z-index": "10000"
		});
		$("#popupContact").css({"z-index": "10001",
		                        "backgroundColor": "#A74C1D",
								"color":"#ffffff"});
		$("#backgroundPopup").fadeIn("slow");
		$("#popupContact").fadeIn("slow");
		popupStatus = 1;
	}
}

//disabling popup with jQuery magic!
function disablePopup(){
	//disables popup only if it is enabled
	if(popupStatus==1){
		$("#backgroundPopup").fadeOut("slow");
		$("#popupContact").fadeOut("slow");
		popupStatus = 0;
	}
}

//centering popup
function centerPopup(){
    $("#popupContact").css({
		"position": "absolute",
		'width':'600px',
		"top": '60px'
	});
	
	$('#contactArea').css({'top':'0px',
	                       'left':'0px',
						   'position':'absolute'});
	$('#slideshow1 img').css({'border':'1px solid #990000'});
	$('#slideshow1').css({'top':'25px'});

	//request data for centering
	var windowWidth = document.documentElement.clientWidth;
	var windowHeight = document.documentElement.clientHeight;
	var popupHeight = $("#popupContact").height();
	var popupWidth = $("#popupContact").width();
	var bodyHeight = $('body').height();
	var bodyWidth = $('body').width();
	
	$("#popupContact").css({
		"left": (bodyWidth/2-popupWidth/4)+'px'
	});
	//centering
	$("#popupContactClose").css({"position":"absolute",
	                             "top":"0px",
								 "left":"587px",
								 "cursor":"pointer",
								 "font-size":"15px",
								 "font-weight":"bold",
								 "color":"#ffffff",
								 "display":"block",
								 "lineHeight":"25px",
								 "width":"25px",
								 "backgroundImage":"url(cssImg/close.gif)",
								 "z-index":"1000",
								 "textDecoration":"none"});
	//only need force for IE6
	
	$("#backgroundPopup").css({
		"height": bodyHeight+"px",
		"width":bodyHeight+"px",
		"backgroundColor":"#cccccc",
		"position":"absolute",
		"top":"0px",
		"left":"0px"
	});
	
}


//CONTROLLING EVENTS IN jQuery
$(document).ready(function(){

    $('#slideshow1').cycle();
	
	//LOADING POPUP
	//Click the button event!
	//$("#button").click(function(){
	$(window).load(function() {
		//centering with css
		centerPopup();
		//load popup
		loadPopup();
	});
				
	//CLOSING POPUP
	//Click the x event!
	$("#popupContactClose").click(function(){
		disablePopup();
	});
	//Click out event!
	$("#backgroundPopup").click(function(){
		disablePopup();
	});
	//Press Escape event!
	$(document).keypress(function(e){
		if(e.keyCode==27 && popupStatus==1){
			disablePopup();
		}
	});

});