jQuery(document).ready(function($){
	if (!$("#imagerotator").hasClass("static")) {
	   $("#imagerotator").infiniteRotator();
	} else {
		$("#imagerotator > .wrapper").css("overflow","hidden");
	}
	
	
	$("#header").click(function(e){
		var x = e.pageX - this.offsetLeft;
		var y = e.pageY - this.offsetTop;
		
		//alert(x +', '+ y);
		//x = 380
		//y = 115
		if(x <= 380 && y <= 115)
		{
			window.location.href = "/";
		}
   });
});
