$(document).ready(function(){
	
	// Colorbox initiation
	// Add 60px to width, 90px to height
	
	$(".colorbox").colorbox({transition:"elastic",height:"90%"});
	$(".youtube").colorbox({iframe:true, innerWidth:650, innerHeight:550});

	// Index page show all events
	
	$("#longlist").click(function(){
		$(this).hide("fast");
		$(".longlist").show("fast");
	});
	
});


