

/* - - - - - - - - - - - - - - - - - - - - - - -
 JavaScript
 marted́ 18 maggio 2010 15.51.22
 HAPedit 3.1.11.111
 - - - - - - - - - - - - - - - - - - - - - - - */


    $(document).ready(function(){
$(".show_log").click(function() {
$("#display_log").fadeIn();

});

$(".searchfield").focus(function() {
$(this).attr('value', '');
},
function () {
$(this).attr('value', 'cerca...');

});

      $('#nav').lavaLamp({
        autoReturn: false,
    fx: 'easeInExpo',
    speed: 500
});

$("._blank").each(function(){
$(this).attr({
target: '_blank'
});

});
if ($('.post').length == 0) {
   //non esiste
} else {
$('.post p').each(function(){
$(this).attr("style", '');
$(this).attr("class", '');

});
}

});



