$(document).ready(function(){

	$('#s').DefaultValue('Buscar...');
	
	$('input, textarea').focus(function(){
		$(this).addClass('fieldFocus');
	});
	$('input, textarea').blur(function(){
		$(this).removeClass('fieldFocus');
	});

	$('.commentAuthor a, #twitterUpdates a, #linkBox a').each(function(){
		$(this).attr('target', '_blank');
	});
	
	$('.sidebarBox, #footer .pageList').each(function(){
		$(this).find('li:last').addClass('last');
	});

});
