g = function() {
	document.search.submit();
	return false;
}
a = function() {
	document.archive.submit();
	return false;
}

jQuery(document).ready(function(){
	jQuery('.search-input').each(function(){
		var defaultValue = $(this).val();
		$(this).bind('click',function(){
			if ($(this).val() == defaultValue) {
				$(this).val('');
			}
		})
	});
});

function sendForm() {
	var objSel = document.getElementById("month");
	objSel.options.length = 0;
	document.forms.archive.submit();
	return false;
}

