function cambiaBriciole() {
	$("#bread a").eq(1).text("Catalogo corsi 2010 - 2' sem.").attr("href","index.php?page=catalogo-2010-2-semestre");
	$(".sub-nav").hide();
	}

$(document).ready(function(){
  	$(".ebav").hover(function() {
		$(this).next("em").animate({opacity: "show", top: "-28"}, "slow");
	}, function() {
		$(this).next("em").animate({opacity: "hide", top: "-75"}, "fast");
	});

if($('span').hasClass("secondoS")) {
	cambiaBriciole()
	}


 });