(function(){

var NewMind = window.NewMind || {};
NewMind.tourism = NewMind.tourism || {};    // use the existing tourism namespace if already defined
NewMind.tourism.searchResults = function(){
	var showresults = YAHOO.util.Dom.getElementsByClassName('showingresults', 'p','middlecol');
	if (showresults.length > 0){
	    showresults = showresults[0];
        var results = YAHOO.util.Dom.getElementsByClassName('results', 'p','middlecol')[0];
        showresults.style.display = "none";
        var displayText = showresults.innerHTML+" "+results.innerHTML; 
    	
        //chekcs if the result list consists of more than one page 
        //and formats the string accordingly
        if(showresults.innerHTML === "" || showresults.innerHTML === " ")	{
            results.innerHTML = displayText.replace("of ","");	
        }
        else{
            results.innerHTML = displayText;
        }
	}
};

YAHOO.util.Event.onDOMReady(NewMind.tourism.searchResults); 


})();

