// JavaScript Document

$(document).ready(function(){
	
	//Google Map API Key
	//ABQIAAAA2S1UxMDwyRvgxUxdH6TYnxSI0avMaIHriBnb3bLGMiaO1AhcKhQhACiIM8OAgbe0nDzb_WOzP3w-LQ
			
	//Saw
	var degree=0;
	setInterval(function(){
		degree -= 0.1;
		$('#saw').rotate(degree);	
	},20);
	var sawheight= $('#saw').height()+6;
	var sawwidth= $('#saw').width();
	$('#saw').css({ top: -sawheight/1.8, left: -sawwidth/2 });
	
	//Main elements
	
	var bodywidth= $('body').width();
	var bodyheight= $(window).height();
	var footwidth= $('#footer').width();
	
	$('.established').rotate(-5);
	
	$('#nav ul li').click(function(){
		//alert($(this).index());
		$('div.page').eq($(this).index()).show().siblings('div.page').hide();		
	});
	
	$('#contact img').hover(function(){
		$(this).stop().animate({ left: 70 },200,'easeInOutCirc');
	},function(){
		$(this).stop().animate({ left: 40 },200,'easeInOutCirc');
	});
	
	$('#footer').css({ left: (bodywidth/2) - (footwidth/2) });
	
	
});
