$(function() {
    // Text color transition
    $("#nav2 li").hover(function() {
        $("a", this).stop().animate({
            color: "#FFFFFF"
        }, 40);
    }, function() {
        $("a", this).stop().animate({
            color: "#A1C352"
        }, 150);
    });
    $('[placeholder]').focus(function() {
        var input = $(this);
        if (input.val() == input.attr('placeholder')) {
            input.val('');
            input.removeClass('placeholder');
        }
    }).blur(function() {
        var input = $(this);
        if (input.val() == '' || input.val() == input.attr('placeholder')) {
            input.addClass('placeholder');
            input.val(input.attr('placeholder'));
        }
    }).blur().parents('form').submit(function() {
        $(this).find('[placeholder]').each(function() {
            var input = $(this);
            if (input.val() == input.attr('placeholder')) {
                input.val('');
            }
        })
    });
});

$(function(){
$("#newsletter-signup").validate({
		rules: {
			email: {
				required: true,
				email: true
			}
		}
}
)
}); 
