/* Go when ready */
$(document).ready(function(){
	$('a.external').click( function(){
		window.open(this.href);
		return false;
	});

	$(".auto_select").click(function(){
		this.select();
	});
});	
