$(function(){
	//Focus fust input
	$("input:text:visible:first").focus();

	externalLinks();
	
	//Remove all elements of class temp_5 after 5 seconds
	$(".temp_5").wait(5000, function() {
		$(".temp_5").fadeOut(2000).wait(2000, function(){
			$(".temp_5").remove();
		});
	});
});



