$(function(){
	$("#jobSearch form").submit(function() {
		type = new String ($(this).attr("rel"));
		if ($("select", this).length)
		{
			query = new String ($("select option:selected", this).text());
		}
		else
		{
			query = new String ($(":text", this).val());
		}
		
		window.location = "/jobs/search/" + escape(type) + "/" + escape(query);
		return false;
	});
});

