// JavaScript Document

$(document).ready(function(){
	$('#content').fadeIn('slow');
	$('#navigation a')
		.css( {backgroundPosition: "0 0"} )
		.mouseover(function(){
			$(this).stop().animate({backgroundPosition:"(0 -250px)"}, {duration:500})
		})
		.mouseout(function(){
			$(this).stop().animate({backgroundPosition:"(0 0)"}, {duration:500})
		})
		.click(function(){
			$('#content').fadeOut('1000');
	});
});




