//domready for index
window.addEvent('domready', function(){
//ajax call topten
$$('.ajaxreq').addEvent('click', function(re) {			
geturl = this.getProperty('href');
splitting = geturl.split('?');
vars = splitting[1];
new Event(re).stop();
var loadevent = $('ajaxcall').empty().addClass('ajaxload');
new Ajax('ajaxcall_topten.php', {
method: 'get',
postBody: vars + '&js=on',
update: $('ajaxcall'),
onComplete: function() {
loadevent.removeClass('ajaxload');
Nifty("div#recensione","transparent big tl");
Nifty("span.image","normal");
}
}).request();
});
//topten tabs
var topten_tabs = new SimpleTabs($('topten'), {
entrySelector: 'h2'
});
//nifty
Nifty("ul.top_item,li.preview","transparent big tl br");
Nifty("ul.item","transparent big tr br");
Nifty("ul.item","transparent normal tl bl");
Nifty("div#recapiti","transparent normal top");
Nifty("div#footbottom","normal fixed-height");
Nifty("li#xhtml,li#css,li#syn","transparent small top");
Nifty("div#home","transparent big tl");
Nifty("div#recensione","transparent big tl");
Nifty("span.image","normal");
});