$(document).ready(function(){
    
      
      $(".button").hover(
        function () {
          $(this).animate({"top": "-=10px"}, "fast");

        },
        function () {
          $(this).animate({"top": "+=10px"}, "fast");
        }
      );
 
    $(".ff1, .ff2, .ff3").focus(function () {
         $(this).css('border','1px solid #6195C9');
      });
      
      $(".ff1, .ff2, .ff3").blur(function () {
         $(this).css('border','1px solid #B8CFE7');
    }); 

		
	$(".another").click(function(e){
		//alert(this.id);
		$("#div"+this.id).slideDown("slow");
		$("#"+this.id).slideUp("slow");
		e.preventDefault();
	});
	
	  $("input, textarea").focus(function () {
         $(this).css('border','1px solid #369');
      });
      
	  $("input, textarea").blur(function () {
	     $(this).css('border','1px solid #B8CFE7');
	  });
		
	$("#contact").submit(function(){
      $("#contact input[name='spam']").val("2");
	});

}); // ===================  end of on ready

