jQuery(document).ready(function () {
		
	var currentSplashClass = jQuery('#splash').attr('class');
		
	 jQuery("#n_thoughts a").hover(function(){  	
			
		jQuery('#splash').removeClass(currentSplashClass);
		jQuery('#n_thoughts').addClass('on');
		jQuery('#splash').addClass('sp_thoughts');

	  }, function(){
	  	
	  	jQuery('#n_thoughts').removeClass('on');
	  	jQuery('#splash').removeClass('sp_thoughts');
	  	jQuery('#splash').addClass(currentSplashClass);
	  	
	  });
	  
	  
	  jQuery("#n_loves a").hover(function(){

		jQuery('#splash').removeClass(currentSplashClass);
		jQuery('#n_loves').addClass('on');
		jQuery('#splash').addClass('sp_loves');

	  }, function(){
	  	
	  	jQuery('#n_loves').removeClass('on');
	  	jQuery('#splash').removeClass('sp_loves');
	  	jQuery('#splash').addClass(currentSplashClass);
	  	
	  });
	  
	  
	  jQuery("#n_life a").hover(function(){

		jQuery('#splash').removeClass(currentSplashClass);
		jQuery('#n_life').addClass('on');
		jQuery('#splash').addClass('sp_life');

	  }, function(){
	  	
	  	jQuery('#n_life').removeClass('on');
	  	jQuery('#splash').removeClass('sp_life');
	  	jQuery('#splash').addClass(currentSplashClass);
	  	
	  });
	  
	  
	  jQuery("#n_gogirl a").hover(function(){
	  
		jQuery('#splash').removeClass(currentSplashClass);
		jQuery('#n_gogirl').addClass('on');
		jQuery('#splash').addClass('sp_gogirl');

	  }, function(){
	  	
	  	jQuery('#n_gogirl').removeClass('on');
	  	jQuery('#splash').removeClass('sp_gogirl');
	  	jQuery('#splash').addClass(currentSplashClass);
	  	
	  });
	  
	  
	  Cufon.replace('h2');
	  Cufon.replace('#newsletter h3');
  	  Cufon.replace('#splash h3');
  	  Cufon.replace('.previous-newsletters');
	
});
