jQuery(document).ready(function () {
	
	jQuery(".dropdown1 li:even").addClass("alt");
	jQuery(".dropdown2 li:even").addClass("alt");
	jQuery(".dropdown3 li:even").addClass("alt");
	

	jQuery('#aboutNav').hover(function () {
		jQuery('#aboutSubNav').slideDown('fast');
		jQuery("#nav .about").attr("style", "background-position: 0px -36px;");
	}, function () {	
			if ( jQuery('#aboutSubNav').length )
				jQuery('#aboutSubNav').slideUp('fast', function() {jQuery('#nav .about').removeAttr("style");});	
			else
				jQuery('#nav .about').removeAttr("style");
	});
	
	jQuery('#quoteNav').hover(function () {
		jQuery('#quoteSubNav').slideDown('fast');
		jQuery("#nav .quote").attr("style", "background-position: 0px -36px");
	}, function () {
			if ( jQuery('#quoteSubNav').length )
				jQuery('#quoteSubNav').slideUp('fast', function() {jQuery('#nav .quote').removeAttr("style");});	
			else
				jQuery('#nav .quote').removeAttr("style");
	});
	
	jQuery('#existingNav').hover(function () {
		jQuery('#existingSubNav').slideDown('fast');
		jQuery("#nav .existing").attr("style", "background-position: 0px -36px");
	}, function () {
			if ( jQuery('#existingSubNav').length )
				jQuery('#existingSubNav').slideUp('fast', function() {jQuery('#nav .existing').removeAttr("style");});	
			else
				jQuery('#nav .existing').removeAttr("style");
	});
	
});
