//footer
function ShowNowYear() {
	var now = new Date();
	var year = now.getFullYear();
	document.write(year);
	}



$(document).ready(function(){ 

	$("#contactArea").css('height', '0px');

	$("a.contact").toggle( 
				function () { 
 					$("#contactArea").animate({height: "350px"}, {queue:false, duration: 777, easing: 'easeOutBounce'}) 
                }, 
                function () { 
					$("#contactArea").animate({height: "0px"}, {queue:false, duration: 500, easing: 'easeOutBounce'})  
				} 
		); 
        
}); 


  function showhide(id){
    if(document.getElementById){
      if(document.getElementById(id).style.display == "block"){
        document.getElementById(id).style.display = "none";
      }else{
        document.getElementById(id).style.display = "block";
      }
    }
  }
