$(document).ready(function(){					$('#portfolio').innerfade({ 				      		animationtype: 'fade',						speed: 'slow',						timeout: 12000,						type: 'sequence',						containerheight: '340px'					});	$("#navigation ul li a").hover(function () {		$(this).css("opacity", ".1");		$(this).stop().animate({opacity: 1}, "slow");	}, function () {$(this).css("opacity", ".1");});});
