// JavaScript Document

 $(document).ready(function(){
			
		if( $.cookie('dove_sono') == null ){
			$("link[media='screen']").attr("href", "/skin/briantea/css/style.css");
			$(".altoContrasto").removeAttr( "style" );
			$(".normale").attr('style','display: none'); 
		}
		if( $.cookie('dove_sono') == "alto" ){
			$("link[media='screen']").attr("href","/skin/briantea/css/Contrast.css");
			$(".normale").removeAttr( "style" );
			$(".altoContrasto").attr('style','display: none'); 
		}
		if( $.cookie('dove_sono') == "normale" ){
			$("link[media='screen']").attr("href","/skin/briantea/css/style.css");
			$(".altoContrasto").removeAttr( "style" );
			$(".normale").attr('style','display: none'); 
		}
		
		 $("#StyleContrast").click(function() {
		 	
			var dove = "alto"
			$.cookie('dove_sono', dove);
		 	
			$("link[media='screen']").attr("href","/skin/briantea/css/Contrast.css");
			$(".normale").removeAttr( "style" );
			$(".altoContrasto").attr('style','display: none'); 
			
		});
	 
		$("#StyleNormal").click(function() {
			
			var dove = "normale"
			$.cookie('dove_sono', dove);
		 	
			$("link[media='screen']").attr("href", "/skin/briantea/css/style.css");
		 	$(".altoContrasto").removeAttr( "style" );
			$(".normale").attr('style','display: none'); 
			
		});
	 
		//$("#StyleNormal").click(function() {
		//  $("link[@media='screen']").attr("href", "/skin/briantea/css/Normal.css");
		// });
		
		//Cancello tutti gli style sui tag
		//$('*').removeAttr( "style" );
		//Cancello tag vuoti
		$(".lastnews li").each(
			function() {
				var elem = $(this);
				
				if (elem.children().length == 0) {
					elem.remove();
				}
		});
		
		
	
	});
