j$(document).ready(function(){
	// Set it up so that the drop down of states automatically 
	// loads up the right state's worth of tour dates.
	j$('#show-state').change(function(){
		document.location = "/concerts?state=" + j$(this).val();
	});
});

