<!-- // Function to find/set agent -->
function buBroker(){
	// jQuery Required
	var object = jQuery("#agentList li:contains('Poole')"); // li:contains('NAME OF AGENT')
	// HTML cannot contain any unescaped ' or any returns
	var html = '<li class="oddRow"><A HREF="http://ronniepoole.poolerealty.com" class="agentPhoto"><IMG SRC="http://cdn.homes.com/cgi-bin/readimage_v2/440913509" BORDER="0" WIDTH="68" alt=""/></A><div class="agentInfo"><h3>Poole<span>, Ronnie </span></h3><p> Broker<br/>Poole Realty, Inc.<br/><A HREF="mailto:ronniep@poolerealty.com">ronniep@poolerealty.com</A><br/>(386) 208-3175&nbsp;</p></div><div class="agentButns"><A HREF="http://ronniepoole.poolerealty.com"><IMG SRC="/images/content/butn_agent-aboutme.gif" BORDER="0" WIDTH="102" HEIGHT="18" ALT=""/></A><A HREF="/content/listings.html/*?ag_id=400105"><IMG SRC="/images/content/butn_agent-mylistings.gif" BORDER="0" WIDTH="102" HEIGHT="18" alt=""/></A></div>
<div class="clear"></div></li>';
	if(typeof(object) == 'object'){
		if(object.length){
			return object;
		}else{
			return html;
		}
	}else{
		return html;
	}	
}

<!-- // Javascript with jQuery -->
jQuery(document).ready(function(){
	jQuery("#agentList li:first").before(buBroker());
	jQuery("#agentList").find("li:odd").addClass("oddRow").end().find("li:even").removeClass("oddRow");
});
