jQuery(function($) {
	
	// Fade Hover
	$.getScript('javascripts/plugins/jquery.color.js', function() 
	{
		$('#header li:not(.selected) a').hover(function() {
			$(this).stop().css({color: '#8D734C'});
		}, function() {
			$(this).stop().animate({color: '#463573'}, 500);
		});
	});
	
	// Get a quote form
	$('#submit-quote').submit(function() 
	{
		$.ajax({
			url: $(this).attr('action'),
			data: $(this).serialize(),
			type: 'POST',
			cache: false,
			success: function(data)
			{
				$('#message').html(data).slideDown();
			},
			error: function()
			{
				$('#message').html('<div class="error"><p>An error occurred while submitting the form</p></div>').slideDown()
			}
		});
		
		return false;		
	});
	
});
