$(document).ready(function() {
	  $.get('/welcome/on_page_load_hook');
	  input_cleared = false;
	  $('.search .text').focus(function(){
	  	if (!input_cleared) {
		  	$(this).attr('value','');
		  	input_cleared = true;
		}
	  });
	  
	  var h = window.location.host.toLowerCase();
	  $("a[href^='http']:not([href^='http://" + h + "']):not([href^='http://www." + h + "'])").attr("target", "_blank");
});
