//javascript document to manage search criteria
//uses jquery to determine what pillar page we are on


$(document).ready(function()
{

	//?searchtext=test&searchmode=AnyWord
	
function submitSearch()
{
	
	 

	if ($("#welcome").length) document.fl.action = "www.google.com";
 	if ($("#community").length) document.fl.action = "www.yahoo.com";
 	if ($("#business").length) document.fl.action = "www.hotmail.com";
 	if ($("#members").length) document.fl.action = "www.cnn.com";
 	if ($("#chamber").length) document.fl.action = "www.melloncg.com";


}



});

