 $(document).ready(function() {  	$('#HomeRotation').show();		$('#HomeRotation').cycle({ 	fx:    'fade',	speed: 2500,	timeout:  7000	});		$('#logo').each(function(){		$(this).hover(function(){			status=$(this).find('a').attr('href');		});		$(this).click(function(){			location = $(this).find('a').attr('href');		});		$(this).css('cursor','pointer');	});      $("#fields_email").attr({ value: 'Enter your email address here' }).focus(function(){            if($(this).val()=="Enter your email address here"){               $(this).val("");            }       }).blur(function(){            if($(this).val()==""){               $(this).val("Enter your email address here");            }       });}); 
