function setup(i){
	var sendData = $("#searchForm").serialize();
	window.location = "/workshops/?" + sendData;
};

$(document).ready(function(){
	
	$("#month option[value="+ getQueryVariable("month") +"]").attr("selected","selected");
	
	$("tr:odd > td").css("background-color","#e5e5e5");
	
	var fsh = $("#tableWrap table:first").height();
	if ( fsh < 274 ){ $("#fakeScroll").css("height",fsh); }
	else{ $("#fakeScroll").css("height",274); };
	
	//schedule form
	$("#searchGo").click(function(){ setup(); });
	$("#pickMonth").change(function(){ setup(); });

});
