//security CAPTCHA of guestbook
function reloadCAPTCHA(){
$('secured-captcha').src='/secured/refresh.php';
};
//domready for libreria
window.addEvent('domready', function(){
//nifty
Nifty("div#footbottom","normal fixed-height");
Nifty("li#xhtml,li#css,li#syn","transparent small top");
Nifty("div#addsignature","transparent big tr");
Nifty("div.signature","transparent big tl");
Nifty("p.topage","transparent normal");
Nifty("div#sezioni","transparent big tr");
//CAPTCHA
if($('secured-captcha')){
$('secured-captcha').onclick = function (){
reloadCAPTCHA();
}
}
//ajax call email sender
$('addsign').addEvent('submit', function(e){
new Event(e).stop();
this.send({
update: $('console')
});
});
});
