$(document).ready(function(){
	$(".single").colorbox();$("a[rel='graphic-gallery']").colorbox();
	$("a[rel='illus-gallery']").colorbox();
	$("a[rel='brand-gallery']").colorbox();
	$("a[rel='web-gallery']").colorbox();
	$("a[rel='photo-gallery']").colorbox();
	$("a[rel='motion-gallery']").colorbox();
	$(".video-gal").colorbox({iframe:true,innerWidth:"75%",innerHeight:"75%"});
	
	$('small#view-resume a').click(function(){
		$('section#cv').fadeTo("slow",0.85);
	
		$('body').addClass('fixed');$('#wrapper-content').addClass('all-fixed');
		$('#nav-first-child').css("visibility","hidden")});
	
		$('.close-btn').click(function(){$('section#cv').fadeOut("slow");
	
		$('body').removeClass('fixed');
		$('#wrapper-content').removeClass('all-fixed');
		$('#nav-first-child').css("visibility","visible")
	});
	
	$('small#view-about a').click(function(){
		$('section#ab').fadeTo("slow",0.85);
	
		$('body').addClass('fixed');$('#wrapper-content').addClass('all-fixed');
		$('#nav-first-child').css("visibility","hidden")});
	
		$('.close-btn2').click(function(){$('section#ab').fadeOut("slow");
	
		$('body').removeClass('fixed');
		$('#wrapper-content').removeClass('all-fixed');
		$('#nav-first-child').css("visibility","visible")
	});
	
	$('li.work-item').hover(function(){
	$(this).find('div.work-caption').stop(false,true).fadeIn("fast")},
	function(){
		$(this).find('div.work-caption').stop(false,true).fadeOut("slow")
	});
	$("nav").hover(function(){
		$(this).find("li.fade-option").stop().animate({left:"25",opacity:1},"fast").css("visibility","visible")},
		function(){
			$(this).find("li.fade-option").stop().animate({left:"0",opacity:0},"meddium").css("display","inline")
		})
});
