/**
 * @author Shaun Morton
 * This script does some stuff to the Search Box and fixes an issue with links.
 */
$(document).ready(function(){
	/* This removes all target="_blank" attributes; this is quicken than going back and removing all of them manually */
	$("a").removeAttr("target");
	
	/* This adds some default text to the search box */
	$(".search_input2").attr("value", "Search");
	$(".search_input2").css("color", "#808080");
	$(".search_input2").click(function(){
		$(this).removeAttr("value");
		$(this).css("color", "#000");
	});
});
