function showSlideShow(el, id, tbl) {
	var flashvars = {
		paramXMLPath: "param.xml?d=" +new Date().getTime(),
		xmlFilePath: tbl +"gallery_xml.asp?" +tbl +"id=" +id +"&d="
			+new Date().getTime()
	}
	var params = { 
		base: ".",
		bgcolor: "#121212",
		allowfullscreen: "true",
		wmode: "transparent"
	}
	var attributes = {}
	swfobject.embedSWF("slideshowpro.swf", "slideshow", "620", "470", "9.0.0", false, flashvars, params, attributes);
	$.fn.colorbox({ inline:true, href:'#slideshow', innerWidth:'620px', innerHeight:'470px' });	
	return false;
}

$(function(){
	if ($('#scroller li').length > 7) {
		$("#scroller").jCarouselLite({
			auto:800,
			speed:1000,
			visible:7
		});
	} else {
		$("#scroller").jCarouselLite({
			speed:1000,
			visible:7
		});
	}
	
	$('#programsmenu').addflexmenu('programsitems');
	$('#theclubmenu').addflexmenu('clubitems');
	$('#schoolmenu').addflexmenu('schoolitems');
	$('#eventsmenu').addflexmenu('eventsitems');
	$('#gallerymenu').addflexmenu('galleryitems');
	$('#contactmenu').addflexmenu('contactitems');
	
	$(document).bind('cbox_closed', function(){
		$('#slideshow').hide();
	});
});

