// JavaScript Document
function Search()
{
	this.SearchTerms;
	this.InputBox;
	//SET SEARCH BOX STYLE TO FOCUS SETTING
	this.BoxFocus = function()
	{
		this.InputBox = document.getElementById("SearchInput");
		this.InputBox.className = "SearchBoxFocus";
	}
	//SET SEARCH BOX STYLE TO BLUR SETTING
	this.BoxBlur = function()
	{
		this.InputBox = document.getElementById("SearchInput");
		this.InputBox.className = "SearchBoxBlur";
	}
	
	
	
}//End of Search Object.
Search = new Search();
