// This changes the hidden form field weblog to tell search what weblogs to search
$(document).ready(function(){
	$("#search-what").change(onSelectChange);
	
	//When the drop-down list changes, update the hidden field weblog
	function onSelectChange(){
		var selected = $("#search-what option:selected");
		if(selected.val() != 0){
			var weblogs = selected.val();
			$("input[@name='weblog']").setValue(weblogs);
		}
	}
 });
