  $(document).ready(function() {
							 
	   $('ul#portfolio').innerfade({
	   speed: 1000,
	   timeout: 5000,
	   type: 'sequence',
	   containerheight: '380px'
	   });
	   
			$(".hoverswap").hover(
			function () {
			$(this).attr("src", $(this).attr("src").replace(/.png/, "-over.png"));
			},
			function () {
			$(this).attr("src", $(this).attr("src").replace(/-over.png/, ".png"));
			});
					   
	});