$(function() {
	//#search box, once keyword specified 
	//#populate hidden parameters to search other fields with this value		   
	/*
	$('#search_event_description').change(function() {
	  $('#search_title,#search_venue_name,#search_venue_address').val($('#search_event_description').val());
	});
	*/
	//#if no keyword specified, bypass form submission and redirect to relevant county events list
	$('#searchform').submit(function() {
		 if($('#keywords').val()=='')
		 {
			 //alert('bypass');
			var catid = $('#searchcategory').val();
			if(catid=='all')
			{
				catid='';	
			}
			else
			{
				catid='C' + catid;	
			}
			window.location = 'http://www.lovelivemusic.ie/whats_on/events/' + catid;
			return false;
		 }
	});
});

