﻿//Contact Form JQuery Script
$(document).ready(function() {
//hides the contact form
$("div.contactForm").hide() ;
 
//click event to toggle the contact form 
 $("div.navButtons a#contact").click(function () {
     $("div.contactForm").slideToggle("slow");
    });
 
 });

 function sentMailAlert () { 
 window.alert("Your Message Has Been Sent");
 }

function validateForm (lblState) { 
if (lblState = null) { 
alert("You need to Select a State");
    }

}


$(function() {
    $(".carouselHolder").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev"
    });
    
    $('a.lightbox').lightBox();
});
