
$(document).ready(function(){ 
	$('#agenda').jScrollPane({ scrollbarWidth: 20 });
	$('#lfotos').jScrollPane({ scrollbarWidth: 20 });
	
	$('.event').each(function(){
		$(this).bind("click",	function() { window.location = '/event/show/id/' + this.id.substr(6);  });
	});
	$('#masthead').flash({
		swf: '/swf/logo.swf',
		height:147,width:1000
	});
	$('#foto-gallery').flash({
		swf: '/ssp/slideshowpro.swf',
		height: 500,
		width: 690,
		flashvars: {
			initialURL: escape(document.location)
		}
	});
}); 

