/**
 * @author Dylan
 */
$(document).ready(function() {
	$('.project_link a').each(function(idx,val){
		$(this).animate({opacity:0},0).delay(200+idx*100).animate({opacity:1},300);
	});
	$('.project_content').animate({opacity:0},0).delay(1200).animate({opacity:1},500);
	

	//Code to run per project ;paded
	$(document).bind("projectLoadComplete", function(e, pid){ 
		log('title:'+$(".project_title").html());
		//Move the title to after the slideshow
		$('.slideshow_component').after($('.project_title'));
	});


});


function log(msg) {
	if(typeof(console)!='undefined'){
		console.log(msg);
	}
}
