$(document).ready(function(){
        $('#sidebar input#mc_mv_EMAIL').attr('value','email');
         $('#sidebar input#mc_mv_FNAME').attr('value','name');
	$('#featured').cycle({ 
    delay:  2000, 
    speed:  2000}); 
    
    $('#footer ul li:last').addClass('last');
        $('input#mc_mv_EMAIL').click(function() {
	        $('input#mc_mv_EMAIL').attr('value','');
	        }).focus(function() {
	        $('input#mc_mv_EMAIL').attr('value','');
	        }).blur(function() {
	       if ( $(this).val() == '' ) {  $('input#mc_mv_EMAIL').attr('value','email');}
	        });
	        
	        $('#sidebar input#mc_mv_FNAME').click(function() {
	        $('#sidebar input#mc_mv_FNAME').attr('value','');
	        }).focus(function() {
	        $('input#mc_mv_FNAME').attr('value','');
	        }).blur(function() {
	       if ( $(this).val() == '' ) {  $('input#mc_mv_FNAME').attr('value','name');}
	        });

		$('#respond input.text').click(function() {
			$(this).prev('label').hide();
			}).focus(function() {$(this).prev('label').hide();}).blur(function() {
				 if ( $(this).val() == '' ) {$(this).prev('label').show();}
				});
				
				$('#respond input.text').click(function() {
			$(this).prev('label').hide();
			}).focus(function() {$(this).prev('label').hide();}).blur(function() {
				 if ( $(this).val() == '' ) {$(this).prev('label').show();}
				});
				
				$('input#cf_field_2').click(function() {
			$(this).offsetParent('li').find('label').hide();
			}).focus(function() {$(this).offsetParent('li').find('label').hide();}).blur(function() {
				 if ( $(this).val() == '' ) {$(this).offsetParent('li').find('label').show();}
				});
				
				$('input#cf_field_3').click(function() {
			$(this).offsetParent('li').find('label').hide();
			}).focus(function() {$(this).offsetParent('li').find('label').hide();}).blur(function() {
				 if ( $(this).val() == '' ) {$(this).offsetParent('li').find('label').show();}
				});
});