$(document).ready(function() {
	// skinable selectbox
	if ( $("select.skinable").length ) {
		$("select.skinable").selectbox({animationSpeed: 200});
	}

	// results table
	/*
	if ( $("table.results td div.more").length ) {
		$("table.results td div.more").hide();
	}

	$("table.results td div.jobfunction a").click(function(){
		$(this).toggleClass("collapsed");
		$(this).parent("div.jobfunction").siblings("div.more").toggle();
		return false;
	});
	*/
	$(".searchgo a").click(function(){
		$(".searchtop form").submit();
		return false;
	});
});