

$(document).ready(function() {
	
	
	var d = new Date();
	var today = d.getDay();
	
	for(k = 0; k <= 6;k++)
	{
		if(k != today)
			$("#upcomingshows" + k).hide();
	}
	
/*
	$('#event_list .date').each(function(index) 
	{
		var temp = $(this).html();
		var dateonly = temp.substr(0, temp.indexOf(","));
		//alert(dateonly);
		
  		$(this).html(dateonly);
  });
	
	*/
	
	
});// end doc ready


