$(function() {
	var slideSpeed = 200;
	var drop_height = -90;
	$('#navHolder,#navDropContent').hoverIntent(function(){
		$('#navDropContent').animate({bottom:drop_height},slideSpeed);
		$('#navShade').animate({bottom:drop_height},slideSpeed);
		$('#navigationShelf').animate({top:120},slideSpeed);
	},function(){});		
	var rollup = function(){
		if($('#navDropContent').css('bottom') == (drop_height + 'px')){
			$('#navDropContent').animate({bottom:0},slideSpeed);
			$('#navShade').animate({bottom:0},slideSpeed);
			$('#navigationShelf').animate({top:30},slideSpeed);
		}
		$('#navigationLevel1 a').removeClass("hovered");
	};
	$(document).mousemove(function(e){
	  if (e.pageY > 210){
		rollup();
	  }
	});
	
	$('#navigationLevel1 a').hover(function(){
		$('#navigationLevel1 a').removeClass("hovered");
		$(this).addClass("hovered");
		$(".navigation-rollout-content").removeClass('active-rollout');
		$("#" + $(this).attr('id').replace("navItem", "navRollout")).addClass('active-rollout');
	},function(){
	});
	
	$('#connectLink').toggle(function() {
		$("#connectIcons").animate({
			width : '110px'
		});
	}, function (){
		$("#connectIcons").animate({
			width : '0px'
		});
	});
});
