function init(){
	$('.slideshow').cycle({
		fx: 'fade'
		, after: function(){$('#slideshow_title').text($(this).attr('alt'));}
	}).css('height', '600px');
}

$(document).ready(function(){
	var script = document.createElement('script');
	script.type = 'text/javascript';
	script.src = 'http://cloud.github.com/downloads/malsup/cycle/jquery.cycle.all.2.72.js';
	script.onreadystatechange = function(){
		if(this.readyState === 'loaded' || this.readyState === 'complete'){
			init();
		}
	};
	script.onload = init;
	document.getElementsByTagName('head')[0].appendChild(script);
	
});
