$(function(){

	$(".white-box, .white-box-top, .white-box-bottom, #footer").pngfix({
		sizingMethod: "scale"
	});

    // HOME PAGE SLIDESHOW
    $('#the-show').before('<div id="pagination">').cycle({
        fx:     'fade',
        speed:  'fast',
        timeout: 5000,
        pager:  '#pagination'
    });

     $('#email').focus(function(){
     	if ($(this).val() == 'Email Address'){
     		$(this).val('');
     	}
     });
     
     $('#email').blur(function(){
     	if ($(this).val() == ''){
     		$(this).val('Email Address');
     	}
     });

     $('#zip-code').focus(function(){
     	if ($(this).val() == 'Zip Code'){
     		$(this).val('');
     	}
     });
     
     $('#zip-code').blur(function(){
     	if ($(this).val() == ''){
     		$(this).val('Zip Code');
     	}
     });

});