$j(document).ready(function(){
	$j('section#cycler')
		.cycle({
			fx: 		'uncover', 
			speed:	2000,
			timeout:	4000,
			pause:	1
		});
	$j('body> header aside')
		.hover(function(){
			$j(this).stop(true,false).animate( { "bottom" : "10px" }, 500 );
		},function(){
			$j(this).stop(true,false).animate( { "bottom" : "43px" }, 500 );
		});
	$j('body> section.content header nav li ul')
		.css({ 'visibility' : 'visible' , 'display' : 'block' })
		.hide();
	$j('body> section.content header nav li')
		.hover(function(){
			$j(this).children('ul').fadeIn(100);
		},function(){
			$j(this).children('ul').fadeOut(100);
		});
});
