$(document).ready(function() {


	//colorbox
	$('a.colorbox').colorbox();
	$("a.colorbox_frame").colorbox({width:"90%", height:"90%", iframe:true});
	$("a.colorbox_flip").colorbox({width:"80%", height:"96%", iframe:true});
	$(".colorbox_file_list").colorbox({width:"500px", height:"300px", iframe:true});
	$(".colorbox_nolang").colorbox({innerWidth:"300px", innerHeight:"100px", iframe:true});


	// animo al roll over i menu principali
	$('#nav ul li a').bind('mouseover',function(){
		$(this).stop().animate({'paddingLeft':10},200);
	}).bind('mouseout',function(){
		$(this).stop().animate({'paddingLeft':5},200);
	});
	//-----------------------------------//

	

	// ANIMAZIONE MENU LATERALE
	$('.content-sx ul[class!="tipo_sez"] li a').bind('mouseover',function(){
		$(this).stop().animate({'paddingLeft':16},100);
	}).bind('mouseout',function(){
		$(this).stop().animate({'paddingLeft':0},100);
	});

	//$(".content-sx ul li").click(function(){
	$(".content-sx ul li img").click(function(){

		var myid = $(this).attr('id');

		$(".content-sx ul li div").each(function(){
			if($(this).attr('id') == (myid+'_oc')){
				//alert ($(this).attr('class'));

				if ($(this).attr('class') == 'chiuso'){
					$(this).attr('class','aperto');
				} else{
					$(this).attr('class','chiuso');
				}
			}
		});

		$(".content-sx ul > li > ul").each(function(){
			if($(this).attr('title') == myid){
				$(this).slideToggle("fast");
			}
		});
	});
	//-----------------------------------//


});// CHIUDO DOMREADY


