var time = true;
var t; //Timer
var showing = false;
$(document).ready(function(){
	//This controls the left side button
	$(document).scroll(function(){
		if(t){
			window.clearTimeout(t);	
		}
		t = window.setTimeout(animateSidePanel, 300);
	});
	function animateSidePanel(){
		$(".contact_us").animate({marginTop: $(document).scrollTop()+170}, 300);
	}
	$(".contact_us_left").hide();
	$(".contact_us_right").add(".interact").click(function(){
		if(showing){
			$(".contact_us_left").animate({width:'hide'});
			$(".contact_us_right").css({backgroundImage:"url('/assets/images/contact_box/contactus.png')"});
			$(".contact_us").animate({width: 60});
			showing = false;
		} else {
			$(".contact_us_right").css({backgroundImage:"url('/assets/images/contact_box/close_window.png')"});
			$(".contact_us").animate({width: 850}, 'fast');
			$(".contact_us_left").animate({width:'show'}, 'slow');
			showing = true;
		}
	});
});
