$(document).ready(function() {
$('#loading').hide();
$('#targetdiv').hide().load('/prodotti/default.htm', function() {$('#targetdiv').show('slow');});
						   });

	$(document).ready(function() {
  $('#accordion a').click( function() {
strID=this.id
if (strID.indexOf('default')!=-1) { 
return
}
else  {
urlToLoad='prodotti/'+strID+'.htm'
}
$('#targetdiv').hide().load(urlToLoad, function() {$('#targetdiv').show('slow');});
});
});
/**************LOADING...**************/
$(document).ready(function() {
  $('#loading').ajaxStart(function() {
    $(this).show();
	$('#divbtncontatti').hide();
  }).ajaxStop(function() {
    $(this).hide();
	$('#divbtncontatti').show();
	initLytebox();
  });
});
