	$(document).ready(function(){
														 
		$('#latest').hide();
		
		$('.ri').cycle('fade');
						
		$('#you-nav').hide();
		$('#us-nav').hide();
		$('#work-nav').hide();
		
    $("#you-nav").bind("mouseleave",function(){
      $(this).fadeOut(250);
    });

    $("#us-nav").bind("mouseleave",function(){
      $(this).fadeOut(250);
    });

    $("#work-nav").bind("mouseleave",function(){
      $(this).fadeOut(250);
    });
		
		$("#you").mouseover(function(){
			$('#you-nav').fadeIn(250);
			$('#us-nav').fadeOut(250);
			$('#work-nav').fadeOut(250);
		});


		$("#us").mouseover(function () { 
			$('#us-nav').fadeIn(250);
			$('#you-nav').fadeOut(250);
			$('#work-nav').fadeOut(250);
		});
		
		$("#work").mouseover(function () { 
			$('#work-nav').fadeIn(250);
			$('#you-nav').fadeOut(250);
			$('#us-nav').fadeOut(250);
		});
			
	});