$(document).ready(function(){
	$('#newfooter').html('<div id="cinfo">\n&copy; 2010 Bauxt S.p.a. <br />Via G. Agnelli, 15 - 33053 Latisana (UD) <br />Tel +390431521058 - Fax +390431521797<br />P.IVA IT02486200302 - REA UD 264681 - Cap. Soc. 4.000.000,00 i.v.<br /><a href="javascript:void(0);" id="cl">[ X ]</a>	</div>\n	<div style="float:left;">\n		&copy; 2010 Bauxt S.p.a. - P.IVA IT02486200302 | <a href="javascript:void(0);" id="ci">company info</a> 	</div>\n	<div style="float:right;"><span><a href="copy.htm">privacy</a> | <a href="legal.htm">copyrights</a> | <a href="http://www.aleaweb.com/" target="_blank">credits</a></span></div>\n	');
	$('#cinfo').css({opacity:0});
	$('#ci').click(function(){
		$('#cinfo').css({display:'block'});
		$('#cinfo').stop('false','false').animate({opacity:1},500);
		var k = setTimeout(function(){
			$('#cinfo').stop('false','false').animate({opacity:0},500, hideit);
		}, 8000);
	});
	$('#cl').click(function(){
		$('#cinfo').stop('false','false').animate({opacity:0},500, hideit);
	});
	function hideit(){
		$('#cinfo').css({display:'none'});
	}
});
