$(function() {		
	$(".header_links a").hover(function() {
		$(this).css({
			'color':'#214A7F',
			'background':'-moz-linear-gradient(bottom, #C7D8ED, #ffffff)'
		});
	}, function() {
		$(this).css({
			'color':'#444444',
			'background':'-moz-linear-gradient(bottom, #dddddd, #ffffff)'
		});
	});
	
	$(".quote_but").click(function() {
		$("#quote").submit();
	});
});



