// jquery onload
$(document).ready(function(){ 
	$("a[rel='external']").attr("target","_blank"); // Open external links in blank window
	
	// Hide search form label and add text to text input
	if($("#frm-busqueda input.populate").attr("value") == '') $("#frm-busqueda input.populate").attr("value",$("#frm-busqueda input.populate").attr("title"));
	$("#frm-busqueda input.populate").bind("focus",function(){if(this.value == this.title) this.value=''});
	$("#frm-busqueda input.populate").bind("blur",function(){if(this.value == '') this.value=this.title}).trigger('blur');

});
