$(document).ready(function(){
/*	TOP NAV */

	$(".sidenav").delay(2000).animate({opacity: 0.3},{queue:true, duration:1000, easing: 'easeOutCubic'})

    //When mouse rolls over
    $(".sidenav").mouseover(function(){
        $(this).stop().animate({opacity: 1},{queue:false, duration:600, easing: 'easeOutCubic'})

    });

    //When mouse is removed
    $(".sidenav").mouseout(function(){
        $(this).stop().animate({opacity: 0.3},{queue:false, duration:600, easing: 'easeOutCubic'});
    });
	

/*	BOTTOM NAV */
	$(".botnav").delay(2000).animate({opacity: 0.3},{queue:true, duration:1000, easing: 'easeOutCubic'})
	
		//When mouse rolls over
		$(".botnav").mouseover(function(){
			$(this).stop().animate({opacity: 1},{queue:false, duration:600, easing: 'easeOutCubic'})
	
		});
	
		//When mouse is removed
		$(".botnav").mouseout(function(){
			$(this).stop().animate({opacity: 0.3},{queue:false, duration:600, easing: 'easeOutCubic'});
		});
	});



