
	jQuery(function() {
		
		jQuery('input,textarea')
			.hover(
				function() { jQuery(this).addClass('hover'); },
				function() { jQuery(this).removeClass('hover'); }
			)
			.focus(function() {
				jQuery(this).addClass('focus');
			})
			.blur(function() {
				jQuery(this).removeClass('focus');
			});
						
		jQuery('#s')
			.focus(function() {
				if(jQuery(this).val() == 'Search') { jQuery(this).val(''); }	
			})
			.blur(function() {
				if(jQuery(this).val() == '') { jQuery(this).val('Search'); }	
			});
			
		/*jQuery('#hproll .onehprollpost:first').show();
		var hprollint = window.setInterval(function () {
  			if(jQuery('#hproll .onehprollpost:visible').next('.onehprollpost').length) {
  				jQuery('#hproll .onehprollpost:visible').fadeOut(1000).next('.onehprollpost').fadeIn(1000);  				
  			}
  			else {
  				jQuery('#hproll .onehprollpost:visible').fadeOut(1000);
  				jQuery('#hproll .onehprollpost:first').fadeIn(1000);
  			}  			
		},5000);
		
		jQuery('.SumaSignUpTitleSubHead:first').hide();
		jQuery('.SumaSignUpTitleSubHead:last').html('Complete these steps to gain <strong>Membership access</strong> to LiveLoveShopLA');*/
		
	});
