$(document).ready(function() { 
	$('#nav-navigate a').toggle(function(){
		$(this).css('background-position','0 -58px');
		$('#nav-navigate').animate({'margin-top':'43px'}, 200);
		$('#navigate').slideDown(200);
	}, function(){
		$(this).css('background-position','0 0');
		$('#nav-navigate').animate({'margin-top':0}, 200);
		$('#navigate').slideUp(200);
	});
	$('#grid a').mouseenter(function(){
		$(this).children('.ro').fadeIn();
	});
	$('#grid a').mouseleave(function(){
		$(this).children('.ro').fadeOut();
	});
	$('#about-grid a').mouseenter(function(){
		$(this).children('img').fadeIn();
	});
	$('#about-grid a').mouseleave(function(){
		$(this).children('img').fadeOut();
	});
	$('#mark a').click(function(){
		$('#mark .col').fadeIn();
		$('#us .col').fadeOut();
		$('#candice .col').fadeOut();
		return false;
	});
	$('#us a').click(function(){
		$('#us .col').fadeIn();
		$('#mark .col').fadeOut();
		$('#candice .col').fadeOut();
		return false;
	});
	$('#candice a').click(function(){
		$('#candice .col').fadeIn();
		$('#us .col').fadeOut();
		$('#mark .col').fadeOut();
		return false;
	});
});
