jQuery(document).ready(function(){
	
	$('#contactForm').submit(function(){
	
		var action = $(this).attr('action');
		
		$('#contactForm #submit').attr('disabled','disabled').after('<img src="img/ajax-loader.gif" class="loader" />');
		
		$("#message").slideUp(750,function() {
		$('#message').hide();			
		
		$.post(action, { 
			name: $('#name').val(),
			email: $('#email').val(),
			phone: $('#phone').val(),
			subject: $('#subject').val(),
			comments: $('#comments').val(),
			verify: $('#verify').val()
		},
			function(data){
				document.getElementById('message').innerHTML = data;
				$('#message').slideDown('slow');
				$('#contactForm img.loader').fadeOut('fast',function(){$(this).remove()});
				$('#contactForm #submit').attr('disabled',''); 
				if(data.match('success') != null) $('#contactForm').slideUp('slow');
				
			}
		);
		
		});
		
		return false; 
	
	});
	
	
	//  nav tab animation 
	
	var navDuration = 10; 
	var navJumpHeight = "1px";
	
	$('#logo, #nav li a').hover(function() {
		$(this).animate({ top : "-="+navJumpHeight }, navDuration);            
	}, function() {
		$(this).animate({ top : "-1px" }, navDuration);
	});

	
});















