$(document).ready(function(){

$('#ptop').hide();

$('#projects').cycle({ 
	fx:      	'scrollHorz', 
	speed:   	500,
	timeout: 	0,
	before: 		function(){
		fade();
		restore();
	}
});

function fade(){
	$('div.text').fadeOut(500);
	$('div.images').fadeOut(500);	
}

function restore(){
	$('div.text').fadeIn(1000);
	$('div.images').fadeIn(1000);	
}

});

