$(document).ready(function() {

$("#menu a:not('.active')") 
	.css( {backgroundPosition: "0 -43px"} )
	.mouseover(function(){
		$(this).stop().animate(
			{backgroundPosition:"(0 -0)"},
			{duration:300})
		})
	.mouseout(function(){
		$(this).stop().animate(
			{backgroundPosition:"(0 -43px)"}, 
			{duration:300}
		)
	});
				
	$("#controller").jFlow({
		slides: "#slides",
		width: "707px",
		height: "350px",
		duration: 500
	});

	$('#logo').delay(1500).animate({marginTop : '0', opacity:1}, 400);

});		
		
