/*
$(document).ready(
	function(){
		// Initialize the tabs
		$('#tabs').tabs({ selected: 0 });
		$('#tabs').bind('tabsselect',
			function(event, ui) {
				if ($(ui.panel).html().length == 0) {
					$(ui.panel).html('<img src="' + rootUrl + 'public/images/default/Common/loader.gif" style="padding-top:25px; padding-left:25px" />');
					
					$.post(rootUrl + 'venues/index/shows-for-venue/', 'venueId=' + $('#venueId').val() + '&month=' + $(ui.panel).attr('id'),
						function(r) {
							$(ui.panel).html(r);
							$('.showstable > tbody > tr > td').hover(tableMouseover, tableMouseout);
						}
					);
				}
			}
		);
		
		// Check if a Google Maps is wanted
        if($('#venuemap').attr('id') != undefined) {
            loadVenueMap('venuemap', createVenueMarker);
        }
	}
);
*/
