$(document).ready(function(){
	//Hide All Elements with Class
	$("#testimonials").animate({top:'-438px'}, 0);
	
	$(".nav_contact").toggle(
	  function() {
	  	$(".hidebox").animate({top: "-438px" }, {easing: 'easeInQuart', duration: 700});
	  	$("#testimonials").animate({top: "38px" }, {easing: 'easeOutQuart', duration: 700});
	  },
	  function() {
	    $(".hidebox").animate({top: "-438px" },{easing: 'easeInQuart', duration: 700});
	  }
	)
	
	$(".closebox").click(
	  function() {
	  	$(".hidebox").animate({top: "-438px" }, {easing: 'easeInQuart', duration: 700});
	  }
	)
	
	$(".linkone").toggle(
	  function() {
	  	$(".hidebox").animate({top: "-438px" },{easing: 'easeInQuart', duration: 700}); 
	  	$("#cgisite").animate({top: "38px" },{easing: 'easeOutQuart', duration: 700});
	  },
	  function() {
	    $(".hidebox").animate({top: "-438px" },{easing: 'easeInQuart', duration: 700});
	  }
	)
	
});
