jQuery(function($) {

	$('#mediaspace').mouseenter(function() {
	  // In one second, do something!
	  $.doTimeout( 90000, function(){
	    $('body').animate({ 
			backgroundColor: "#CC7A00" 
			}, 100).animate({ 
				backgroundColor: "#FFFF66" 
				}, 1000);			
	  });
		
	});

});

