$(document).ready(function () {
    $('#nav li a').hover(function () {
        $(this).stop().animate({
            color: '#F9A509',
            borderColor: '#F9A509'
        }, 300);
    }, function () {
        $(this).stop().animate({
            color: '#fff'
        }, 300);
    });
	
    //Contact Form 
    $("#contactName").focus(function () {
        if ($(this).val() == "Name") {
            $(this).val("");
        }
    });
    $("#contactName").blur(function () {
        if ($(this).val() == "") {
            $(this).val("Name");
        }
    });
    $("#contactEmail").focus(function () {
        if ($(this).val() == "Email") {
            $(this).val("");
        }
    });
    $("#contactEmail").blur(function () {
        if ($(this).val() == "") {
            $(this).val("Email");
        }
    });
    $("#contactComments").focus(function () {
        if ($(this).val() == "Comments") {
            $(this).val("");
        }
    });

    $("#contactComments").blur(function () {
        if ($(this).val() == "") {
            $(this).val("Comments");
        }
    });
   
});
