// common script

	$(document).ready(function(){
		$("#header-menu-item li").hover(
			function(){ $("ul", this).fadeIn("fast"); }, 
			function() { } 
		);
	if (document.all) {
			$("#header-menu-item li").hoverClass ("sfHover");
		}
	});

	$.fn.hoverClass = function(c) {
		return this.each(function(){
			$(this).hover( 
				function() { $(this).addClass(c);  },
				function() { $(this).removeClass(c); }
			);
		});
	};

   $(document).ready(
	function(){
		$('ul#portfolio').innerfade({
			speed: 950,
			timeout: 5600,
			type: 'sequence',
			containerheight: '202px'
		});
		
	});
