$(function(){

	//hide jquery resultbox (ajax notifications)
	$('#resultbox').hide();
	
	//sortable tabs
	if(tabbehaviour == 'click') var $tabs = $("#tabs").tabs();
	else if(tabbehaviour == 'hover') var $tabs = $("#tabs").tabs({event: 'mouseover'});
	
	//search dropdowns
	$('.checkboxgroup ul').hide();
	$('.checkboxgroup').bind('mouseenter', function() {
			$('.checkboxgroup ul').hide();
			$(this).find('ul').show();
	});
	$('.checkboxgroup').bind('mouseleave', function() {
			$(this).find('ul').hide('fast');
	});
	
	//focus the search text field
	$("#searchstring").focus();
	
});
//end of jquery loader


