// JavaScript Document

(jQuery);$(document).ready(function(){
	var c=$("#content_window");
//	var a=$("#topscrollingContent1");
//	var j=$("#topscrollingContent2");
//	var i=$("#topscrollingContent3");
	var d=1600;
	
	function g(){
		c.stop().scrollTo($("#content_home"),d,{axis:"x",offset:{left:0,top:0}});
//		a.stop().animate({backgroundPosition:"(0px 0px)"},d);
//		j.stop().animate({backgroundPosition:"(0px 0px)"},d);
//		i.stop().animate({backgroundPosition:"(0px 0px)"},d);
		$("#next_arrow").removeClass("noScroll goto_home goto_web goto_photo goto_contact goto_digital");
		$("#prev_arrow").removeClass("noScroll goto_home goto_web goto_photo goto_contact goto_digital");
		$("#next_arrow").addClass("goto_web");
		$("#prev_arrow").addClass("noScroll");
		return false
	}
	function f(){
		c.stop().scrollTo($("#content_web"),d,{axis:"x",offset:{left:0,top:0}});
//		a.stop().animate({backgroundPosition:"(-300px 0px)"},d);
//		j.stop().animate({backgroundPosition:"(-150px 0px)"},d);
//		i.stop().animate({backgroundPosition:"(-50px 0px)"},d);
		$("#next_arrow").removeClass("noScroll goto_home goto_web goto_photo goto_contact goto_digital");
		$("#prew_arrow").removeClass("noScroll goto_home goto_web goto_photo goto_contact goto_digital");
		$("#next_arrow").addClass("goto_photo");
		$("#prev_arrow").addClass("goto_home");
		return false
	}
	function e(){
		c.stop().scrollTo($("#content_photo"),d,{axis:"x",offset:{left:0,top:0}});
//		a.stop().animate({backgroundPosition:"(-600px 0px)"},d);
//		j.stop().animate({backgroundPosition:"(-300px 0px)"},d);
//		i.stop().animate({backgroundPosition:"(-100px 0px)"},d);
		$("#next_arrow").removeClass("noScroll goto_home goto_web goto_photo goto_contact goto_digital");
		$("#prev_arrow").removeClass("noScroll goto_home goto_web goto_photo goto_contact goto_digital");
		$("#next_arrow").addClass("goto_digital");
		$("#prev_arrow").addClass("goto_web");
		return false
	}
	function b(){
		c.stop().scrollTo($("#content_contact"),d,{axis:"x",offset:{left:0,top:0}});
//		a.stop().animate({backgroundPosition:"(-900px 0px)"},d);
//		j.stop().animate({backgroundPosition:"(-450px 0px)"},d);
//		i.stop().animate({backgroundPosition:"(-150px 0px)"},d);
		$("#next_arrow").removeClass("noScroll goto_home goto_web goto_photo goto_contact goto_digital");
		$("#prev_arrow").removeClass("noScroll goto_home goto_web goto_photo goto_contact goto_digital");
		$("#next_arrow").addClass("noScroll");
		$("#prev_arrow").addClass("goto_digital");
		return false
	}
	function u(){
		c.stop().scrollTo($("#content_digital"),d,{axis:"x",offset:{left:0,top:0}});
//		a.stop().animate({backgroundPosition:"(-900px 0px)"},d);
//		j.stop().animate({backgroundPosition:"(-450px 0px)"},d);
//		i.stop().animate({backgroundPosition:"(-150px 0px)"},d);
		$("#next_arrow").removeClass("noScroll goto_home goto_web goto_photo goto_contact goto_digital");
		$("#prev_arrow").removeClass("noScroll goto_home goto_web goto_photo goto_contact goto_digital");
		$("#next_arrow").addClass("goto_contact");
		$("#prev_arrow").addClass("goto_photo");
		return false
	}
	
	$(".goto_home").live("click",g);
	$(".goto_web").live("click",f);
	$(".goto_photo").live("click",e);
	$(".goto_contact").live("click",b);
	$(".goto_digital").live("click",u);
	
	$onForm=false;
	$("input,textarea").focus(function(){$onForm=true});
	
	$("input,textarea").blur(function(){$onForm=false});
	
	
		});
