/**
 * @author Web Dev
 */

$(function(){
	
	/******* This Creates The Hover Over Effect ***********/
	
	$('#wrap a[class="mainLink"]:odd').hover(
	function(){$(this).css({background : "#333", color : "#fff"});},
	function(){$(this).css({background : "#80B232", color : "#000"});}
	);
	$('#wrap a[class="mainLink"]:even').hover(
	function(){$(this).css({background : "#333", color : "#fff"});},
	function(){$(this).css({background : "#C1FF61", color: "#000"});}
	);
	
	$('#wrap a[class="mainLink"]:odd').css("background", "#80B232");
	$('#wrap a[class="mainLink"]:even').css("background", "#C1FF61");
	
	/****** This Hides The Submenu Items ******************/
	
	$('.subItem').hide();
	$('.mainLink').click(function(e){
		$('.subItem').slideUp(500);
		$(this).next('.subItem').slideDown(500);
		e.preventDefault();
	});
	
	
	/****** Main Navigation **********/
	$('#mainNav li[class="main"]').hover(
		function(){
			$(this).find('ul').show();
		},
		function(){
			$(this).find('ul').hide();
		}
		);
	$("#calculator_main input:text").css({border: "1px solid #ccc"});
	
	/****** This is the Quote Request Validation ********
	$("#quote_request").click(function(e){
		if(".quote_input" == " "){
			alert("Required fields must be filled out before proceeding.");
			e.preventDefault();
		}	
	});*/
	
	
	
});