$(document).ready(function() {
     $("ul#nav li a").addClass("js");
     $("ul#nav li a").hover(
	  function () {
	       $(this).stop(true,true).animate({
		    backgroundPosition:"(0 0)"
	       }, 200);
	       $(this).animate({
		    backgroundPosition:"(0 -5px)"
	       }, 150);
	  },
	  function () {
	       $(this).animate({
		    backgroundPosition:"(0 -149px)"
	       }, 200);

	  }
	  );
     $("ul#logo li a").addClass("js");
     $("ul#logo li a").hover(
	  function () {
	       $(this).stop(true,true).animate({
		    backgroundPosition:"(0 0)"
	       }, 200);
	       $(this).animate({
		    backgroundPosition:"(0 -5px)"
	       }, 150);
	  },
	  function () {
	       $(this).animate({
		    backgroundPosition:"(0 -149px)"
	       }, 200);

	  }
	  );


});


function goToContact(){
     $('html, body').animate({
     scrollTop: $("#contactUs").offset().top
     }, 300);
//     $('#contactHint').show();
//     $("#contactHint").slideDown("slow");
	       $("#contactHint").animate({
		    backgroundPosition:"(0 0px)"
	       }, 1000);

     
//     $("#contactName").effect("highlight", {color:"#773E3E"}, 3000);
//     $("#contactEmail").effect("highlight", {color:"#773E3E"}, 3000);
//     $("#contactPhone").effect("highlight", {color:"#773E3E"}, 3000);
//     $("#yourMessage").effect("highlight", {color:"#773E3E"}, 3000);

}
