jQuery.noConflict();

jQuery(function(){
				
		/*Hide the NEW HOMES option */
		//jQuery("#navlist li:last-child").remove();
		/* ######## HIDE ADS ON MARKETING PROFILE ######## */
		
		jQuery("#a_side h1:eq(1)").prependTo("#pref_broker");	//move the h1(preferred agent) tag inside the #pref_broker div
		if (location.pathname!="/properties/brokers/search/detail.php")
		{
			jQuery("#pref_broker").show();
			jQuery("#a_ads").show();
			jQuery("#a_right, #a_left").show();
			
			//jQuery("#a_side h1:eq(1)").hide();
		}
		/* ######### HIDE ZIP IN NCT HOMES SEARCH ####### */
		
		if (document.location=="http://nctimes.re.adicio.com/properties/search/searchForm.php?qTerms=sell&qSearchTab=sell")
		{
			jQuery('#SearchQuick').find('td.md_text').lt(2).hide();
			jQuery('#zip').hide();
		}
		
		/* ############################### */
		
		
		
		jQuery(function(){
		
			jQuery('#navlist li a').colorize('#548a54', '#dde5c4',[1,1,1],"borderColor");
													
		});
		
		jQuery(function(){ 
			/* find the search string and for qSearchTab (after the =)*/
			var stuff = queryString('qSearchTab');
			
				if( stuff=="")
				{
					stuff="mlsonly";	//this is the default page
				}
			stuff = "qSearchTab=" + stuff;  //append variable found to qSearchTab={sell,mlsonly,rent,or agnet}
		
		if(location.search !="")
				   {
		// eq(1) gives the second one found (in this case "mls listing")
		jQuery('#navlist li a[@href*="' + stuff + '"]').eq(0).attr('class', 'selected');
			   }
		
		});
			
	});