$(document).ready(function(){
	//Portfolio Hover Effect
	$(".folio-item img").fadeTo("normal", 1.0);//Reset to 100% on Page Load
	$(".folio-item img").hover(function(){
		$(this).fadeTo("normal", 0.6);
		},function(){
		$(this).fadeTo("normal", 1.0);
	});

	//Menu Icons Hover 
	$(".menu li a").not('.menu li#current a').hover(function() {
		$(this).next("em").animate({opacity: "show", top: "-90"}, "fast");
	}, function() {
		$(this).next("em").animate({opacity: "hide",top: "-100"}, "fast");	
	});
	
	//Featured Work Cycle on Home Page
	$('ul#feat-list').cycle({ fx:'fade', speed:  2500, pause: 1 });

});