$(document).ready(function(){
	// cycling portfolio items at the homepage
	$('#portfolio-image').cycle({
	    delay:  1000,
	    speed:  1000,
		 before: onBefore
	});
	function onBefore() {
	    $('#portfolio-text').hide().html(this.alt).fadeIn(1000);
	};
});
