$(document).ready(function() {
	Cufon.replace('#sidebar h3')('#posts > h3')('#comment h3')('#reply h3')('#page > h3');
	toggleText('s', 'cerca nel blog');
	toggleText('s2', 'cerca nel blog');
});

function toggleText(p1, p2){
    $('input'+'#'+p1).focus(function () {
        if (this.value == p2) {this.value = '';}
    });
    $('input'+'#'+p1).blur(function () {
        if (this.value == '') {this.value = p2;}
    });
}