$(document).ready(function(){
	
	//var effects = ['scrollLeft','scrollRight','scrollUp','scrollDown'];	
	var effects = ['scrollLeft','scrollRight'];

	$('.project-thumb').each(function(index,element){
		$(element).find('.home-cylce-pics').cycle({		
	  	fx: effects[Math.round((Math.random()*effects.length)-0.5)],  
	  	speed:  'fast',  
	  	timeout: 3000,
	  	delay: 100+Math.round(Math.random()*3000)
		})
		$(element).hover(function(){
			$(this).find('.home-cylce-pics').cycle('pause');
			var blurb = $("<div class='project-blurb'><div class='top'></div><div class='content'>"+$(this).attr('data-blurb')+"</div></div>");
			blurb.appendTo($(this)).hide().fadeIn();
		},function(){
			$(this).find('.project-blurb').fadeOut('fade',function(){$(this).remove()});
			$(this).find('.home-cylce-pics').cycle('resume');			
		})
	});
});
