$(document).ready(function(){
	
	$('#content').css('height','272');
	
	$('#carousel .tab h2').hide();
	$('#carousel .tab:not(:first)').hide();
	
	$('ul#carousel-nav li a').click(function(e){
		e.preventDefault();
		var tab_to_show = $(this).attr('href');
		var new_class = tab_to_show.split('-')[1];

		var actual_class = $('ul#carousel-nav').attr('class');
		$('ul#carousel-nav').removeClass(actual_class).addClass(new_class);
		$(tab_to_show).show().siblings('.tab').hide();		
	});
	
	
	//gestione linkbox
	$("#news ul li").hover(function(){
			$(this).css({'cursor':'pointer'}).addClass("hovering");
		},function(){
		$(this).removeClass("hovering");
	}).click(function(){
		document.location = $(this).find("a:first").attr("href");
	});
	
});


