var timer = Array;
$(document).ready(function(){

	//LOADING POPUP
	//Click the button event!
	$("#button").click(function(){
		
		//centering with css
		centerPopup();
		
		//load popup
		loadPopup();
	});
	
	//CLOSING POPUP
	//Click the x event!
	$("#popupClose").click(function(){
		disablePopup();
	});
	
	//Click out event!
	$("#backgroundPopup").click(function(){
		disablePopup();
	});
	
	//Press Escape event!
	$(document).keypress(function(e){
		if(e.keyCode==27 && popupStatus==1){
			disablePopup();
		}
	});
	


	$('.nav_tabs > li').hover(
		function(){
			$(this).stop();
			$(this).animate({'top':'0px'});
		},
		function(){
			$(this).stop();
			$(this).animate({'top':'-90px'});
		}
	);
	
	$('.nav_tabs > li').click(function(){
		$(this).css('background-position','-140px 0px');
	});
	$('.dontpoint').animate({'opacity':'0'});
	$('.stick_man').hover(
		function(){
			$('.dontpoint').stop();
			$('.dontpoint').css('visibility','visible');
			$('.dontpoint').animate({'opacity':'1'});
		},
		function(){
			$('.dontpoint').stop();
			$('.dontpoint').animate({'opacity':'0'}).animate({'visibility':'hidden'});
		}
	);

});

