function clearsearch ( obj ) {
	if (obj.value.indexOf('Buscar...') == 0) 
		obj.value = '';
}

jQuery(document).ready(function(){
	jQuery('.comment-reply').click(function(){
		var text = jQuery(this).parent().children('.comment-special').html();
		var current = jQuery('textarea#comment').val();
		if(current!='') current = current + '\n\n';
		jQuery('textarea#comment').val(current+''+text+': ');
		$('comment').scrollTo();
		return false;
	});
});

function SelectAll(id)
{
    document.getElementById(id).focus();
    document.getElementById(id).select();
}
