$(document).ready(function() {
	$('#content_box').fadeIn('slow');
	
	$('#content_box').hover(
		function() {
			$(this).css({
				'background-color':'#FFF',
			});
		},
		function() {
			$(this).css({
				'background':'none',
			});
		});	
});
