jQuery(document).ready(function(){

	/*
jQuery("div.projects ul li").fadeTo("slow", 0.6);
	jQuery("div.projects ul li").hover(function(){
		jQuery(this).fadeTo("slow", 1.0);
		},function(){
			jQuery(this).fadeTo("slow", 0.3);
		});
*/
	
	jQuery('#header').localScroll({
		easing: 'easeInOutQuad'
		});
		
	jQuery('div.section').localScroll({
		easing: 'easeInOutQuad'
		});
	
	jQuery("a.fancybox").fancybox({ 
		'overlayShow': true
	});
	
	jQuery("div.projects ul li a img").lazyload({ 
	    placeholder: "images/grey.gif",
	    effect: "fadeIn" 
	});
	 
});
