$(document).ready(function(){

	$("#run_search").click(function(){ $("#frmsearch").submit(); return false; });
	$("#cancel_exit").click(function(){
		var href = $(this).attr("href");
		Lightbox.confirm("Are you sure? All criteria will be lost.", function(){
			window.location = href;
		});

        return false;
	});

	$("#country_id").change(function(){ lookupSelect("country_id", $(this).val(), "tb_region", "region_id", "description"); return false; });
	$("#region_id").change(function(){ lookupSelect("region_id", $(this).val(), "tb_location", "location_id", "description"); return false; });

	$(".applyalt").click(function(){
		Lightbox.alert("Thank you for your interest in the position. This position requires a manual application.<br />Therefore in order to Apply for this Job please refer to the application process as detailed in the Job description.");
        return false;
	});

});

