jQuery.noConflict();

jQuery(document).ready(function() {
	jQuery('#TogglePastShows').toggle(
		function() {
			jQuery('div.showListing.past').slideDown();
			jQuery('#TogglePastShows a').html('hide past shows');
		},
		function() {
			jQuery('div.showListing.past').slideUp();
			jQuery('#TogglePastShows a').html('unhide past shows');
		}
	);

	jQuery('div.showListingImage a').lightBox({
		imageLoading:			'mysite/javascript/jQuery.lightbox/images/lightbox-ico-loading.gif',	// (string) Path and the name of the loading icon
		imageBtnPrev:			'mysite/javascript/jQuery.lightbox/images/lightbox-btn-prev.gif',		// (string) Path and the name of the prev button image
		imageBtnNext:			'mysite/javascript/jQuery.lightbox/images/lightbox-btn-next.gif',		// (string) Path and the name of the next button image
		imageBtnClose:			'mysite/javascript/jQuery.lightbox/images/lightbox-btn-close.gif',		// (string) Path and the name of the close btn
		imageBlank:				'mysite/javascript/jQuery.lightbox/images/lightbox-blank.gif',			// (string) Path and the name of a blank image (one pixel)
	});
});
