 $(document).ready(function() {
							

							
	 


	//hide address container
	$("#incentives, #promo").hide();
	
	//on the submit button press show the address container
	$('#incentives-button').click(function() {
		$("#incentives").fadeIn("slow");  // Shows "Thanks for subscribing" div
		$("#promo").hide();
		$("#subscribe-promo").get(0).reset()
		$("#subscribe-promo label.error").hide();
	});
	
	$('#promo-button').click(function() {
		$("#promo").fadeIn("slow");  // Shows "Thanks for subscribing" div
		$("#incentives").hide();
		$("#subscribe-incentives").get(0).reset()
		$("#subscribe-incentives label.error").hide();
	});
    
	$('body#home ul.cols li:last-child').addClass('last');
	$('ul#bottom-nav li:last-child').addClass('last');
	$('ul#bottom-nav li:first-child').addClass('first');
	$('ul#bottom-nav li:last-child').addClass('clearfix');
	
$('.textField').each(function() {
    var default_value = this.value;
    $(this).focus(function() {
        if(this.value == default_value) {
            this.value = '';
        }
    });
    $(this).blur(function() {
        if(this.value == '') {
            this.value = default_value;
        }
    });
});

 



	});
 
 function setDate(){
new Date();
var d = new Date();
document.write(d.getFullYear()); 
}
