// On Page Load
$(document).ready(function(){ 
	$('div#quote').hide();
	$('a#openform').click(function() {
		$('#quote').slideToggle('500');
		return false;
	});
	
	$('#quoteForm').ajaxForm({
	target: '#results',
	success: function() {
			$('#results').fadeIn('slow');
		}
	});

	$('#contact_form').ajaxForm({
	target: '#contactResults',
	success: function() {
			$('#ContactResults').fadeIn('slow');
		}
	});

$(".stripes tr").mouseover(function() {$(this).addClass("over");}).mouseout(function() {$(this).removeClass("over");});
	$(".stripes tr:even").addClass("alt");
}); 
