    $(document).ready(function() {
        // Form styling
    //$('#carForm').jqTransform({imgPath:'/css/img/'});
        $('#slider').s3Slider({
            timeOut: 5500
        });
    $("#topnav li").prepend("<span></span>"); //Throws an empty span tag right before the a tag

	$("#topnav li").each(function() { //For each list item...
		var linkText = $(this).find("a").html(); //Find the text inside of the <a> tag
		$(this).find("span").show().html(linkText); //Add the text in the <span> tag
	}); 

	$("#topnav li").hover(function() {	//On hover...
		$(this).find("span").stop().animate({
			marginTop: "-40" //Find the <span> tag and move it up 40 pixels
		}, 250);
	} , function() { //On hover out...
		$(this).find("span").stop().animate({
			marginTop: "0"  //Move the <span> back to its original state (0px)
		}, 250);
	}); 
    $( "#serviceDate").datepicker();
    

    $("#dateOfService").mask("99/99/9999");
    $("#puTime").mask("99:99 **");        
    $("#hPhone").mask("(999) 999-9999");
    $("#mPhone").mask("(999) 999-9999");
    $("#companyPhone").mask("(999) 999-9999");     
    $("#zip").mask("99999"); 
    $('#puTime').timepicker({showPeriod: true, showLeadingZero: true});    	
        $("#carForm").validate({
	        rules: {
	            fullName: "required",
		        address: "required",
		        city: "required",
		        state: "required",
		        zip: "required",
		        email: {required: true, email: true},		        
		        hPhone: "required",
		        mPhone: "required",	        
                serviceDate: "required",
               // flight: "required",
                puTime: "required",
                puLocation: "required",
                doLocation: "required",
                vechile: "required",
                passengers: "required",
                bags: "required",
                iAgree: "required"
	        },
	        messages: {
	            fullName: "*",
		        address: "*",
		        city: "*",
		        state: "*",
		        zip: "*",
		        email: {required: "*", email: "*"},		        
		        hPhone: "*",
		        mPhone: "*",	        
                serviceDate: "*",
                //flight: "*",
                puTime: "*",
                puLocation: "*",
                doLocation: "*",
                vechile: "*",
                passengers: "*",
                bags: "*",
                iAgree: "*"
	        }
        });
        
        
        
});
        
