$(document).ready(function() {
	
	var nvTimer = 0
		$('#minWidth').css('left',$('body').width())
		$('#minWidth').animate({
			left:0
		}, 1100)
		
		$('.fixed-bottom').css('marginTop','120px');
		$('.fixed-bottom').animate({
		marginTop:-45
		}, 1100);

		$('.fixed-top').css('marginTop','-120px');
		$('.fixed-top').animate({
		marginTop: 10
		}, 1100);		
		
		$('.subnav a').click(function() {
			$('.subnav a').not($(this)).removeClass('here')
			linkhref = $(this).attr('href')
			$('#minWidth').animate({
				left:$('body').width()
			}, 1100, function() {
				window.location = linkhref
				$('#minWidth').parent().addClass('load-page')
			});
			clearTimeout(nvTimer);
			$('.navigation ul').hide()
			return false
		});
		$('.navigation li').hover(function() {
			clearTimeout(nvTimer); 
			$(this).find('ul').fadeIn("slow")
		}, function() {
			var elnav = $(this).find('ul')
			nvTimer=setTimeout(function(){
				elnav.fadeOut('fast')
			},800); 
		});
});

