$(document).ready(function(){  
	$("#alt_menu li, #main_menu li").hover(
		function() {
			$(this).addClass("over");
			},
		function() {
			$(this).removeClass("over");}
	);
	$('a.lb').colorbox({width:"600px", height:"500px", iframe:true });	
	$('a.lbimg').colorbox();
	
	$(".row .box:last-child, #alt_menu2 li:last-child, #pagina .row.c3:last-child").addClass("last");
	$("#lang_menu li:first-child, #main_menu>ul>li:first-child").addClass("first");
});
