
function goToPage(num){	

	document.getElementById('numPage').value=num; 
	document.search_form.submit();
	
}


function orderBy(isSearch){	
	
	if(isSearch){	
		document.getElementById('ordine').value=document.getElementById('ordineFormOrderBy').value;
		document.search_form.submit();
	} else {
		document.orderby_form.submit();
	}
	
}

function setVerso(verso){	
	
	document.getElementById('verso').value=verso; 
	document.search_form.submit();
	
}




$j(document).ready(function(){
							
	$j("td:odd").addClass("odd");	
	
	$j("table tr").hover(function() {
									   
		$j(this).addClass("hover");
		
	}, function() {
		$j(this).removeClass("hover");
	});
	
	$j("table td:first-child").css("width", "200px");



});
