
	
	/* -- Header image ctrl -------------------------------------------------------------------------------- */
	$('#ctrlHeader').click(function(){
		if($('#header').css('height')=='460px'){
			$('#header').animate({height:180}, 'slow');
			$('#ctrlHeader').css('background-position', 'center -17px');
		}
		
		if($('#header').css('height')=='180px'){
			$('#header').animate({height:460}, 'slow');
			$('#ctrlHeader').css('background-position', 'center 0px');
		}
	});
	
	
	
	
	

	/* Navigation */
	$('#navi > li:has(ul)').hover(function(){
		$('#navi > li > ul').stop(true, true);
		$('> ul:not(:animated)', this).delay(200).slideDown('slow');
	}, function(){
		$('#navi > li > ul').stop(true, true);
		$('> ul', this).slideUp('slow');
	});
	
	$('#navi > li:has(ul) > a').click(function(){
		//return false;
	});	
		
	




