	$(document).ready(function() { 

		$("#still-toggle-show").click(function(){
			$("#still-toggle-show").hide();
			$("#still-toggle-hide").show();
			$("#stills").slideDown("fast");
		});
		
		$("#still-toggle-hide").click(function(){
			$("#still-toggle-show").show();
			$("#still-toggle-hide").hide();
			$("#stills").slideUp("fast");
		});	

		$("#navigation ul li.children").hoverIntent({over: showSub, interval: 100, timeout: 100, out: hideSub});	
		
		$("#fetaure-control-left a,#fetaure-control-right a").hover(
			function () {
				$(this).children("span").show();
			},
			function () {
				$(this).children("span").hide();
			}
		);		
		
	});
	
	function showSub() {
		$("#overlay").fadeIn("fast");
		$(this).children("ul").fadeIn('fast');		
	}
	
	function hideSub() {
		$("#overlay").hide();
		$(this).children("ul").hide();
	}

