    //if ($ektron.browser.version == '7.0' && document.location.pathname=="/" ) { }
	
	//else {
	google.load("search", "1");
	function GoogOnLoad() 
    {
        // Create a search control
        var searchControl = new google.search.SearchControl();
        var options = new google.search.SearcherOptions();
        options.setExpandMode(google.search.SearchControl.EXPAND_MODE_OPEN);
        options.setRoot(document.getElementById("searchResults"));
        options.setNoResultsString(google.search.SearchControl.NO_RESULTS_DEFAULT_STRING);
        // Add in a full set of searchers
        mySearch = new google.search.WebSearch();
        mySearch.setUserDefinedLabel("Your search results at Marcel Media");
        mySearch.setSiteRestriction("marcelmedia.com");
 
        searchControl.addSearcher(mySearch, options);
        searchControl.setLinkTarget(google.search.Search.LINK_TARGET_SELF);
        searchControl.setResultSetSize(google.search.Search.LARGE_RESULTSET);
        searchControl.draw(document.getElementById("searchHeader"));

        $ektron("input.gsc-search-button").bind("click", function (e) { $ektron("#floatingmessage").hide(); $ektron("#homepicWrap").hide(); $ektron("#bars-wrap").hide(); });

        $ektron('input.gsc-input').focus
        (
		    function () 
            {
		        $ektron('input.gsc-input').css("background", "none");
		    }
	    );
        $ektron('input.gsc-input').blur
	    (
		    function () 
            {
		        $ektron('input.gsc-input').css("background", "url(\"http://www.google.com/cse/intl/en/images/google_custom_search_watermark.gif\") no-repeat left center rgb(255, 255, 255)");
		    }
	    );
    }
    google.setOnLoadCallback(GoogOnLoad);
	
	//}
	

