// JavaScript Document
$(document).ready(function() {
	// Handle search type switching.
	$('div#resource-search-type-selector a').click(function() {
		var new_type = $(this).attr('rel');
		
		$('input#resource-search-type').val(new_type);
		$('div#resource-search-type-selector a').removeClass();
		$(this).addClass('active');
		return false;
	});
	
	$('div#resource-shortcuts-underlay').click(function() {
		$('div#resource-shortcuts').hide();
		$('div#resource-shortcuts-underlay').hide();
	});
});