hld_documentReady("addDealerSEOExpansion");
var buttonSEOLinks = "[id='dealerSEOExpander']";

function addDealerSEOExpansion()
{
	$(buttonSEOLinks).unbind();
	$(buttonSEOLinks).click(function() 
	 {
		var image = $("#dealerSEOExpander").attr("src");	
		
		if(image.indexOf('tableRowContractG') > -1) {
			contractDealerSEOLinks();
		} else {
			expandDealerSEOLinks();
		}
		return false;
	 });
}

function expandDealerSEOLinks() {
		$("#dealerSEOExpanderLinks").slideDown('fast');
		$("#dealerSEOExpander").attr('src', resources + "/images/tableRowContractG.gif");
		//		$(".footerBox").animate({
		//	height:'72em'
		//	});
}

function contractDealerSEOLinks()
{
		$("#dealerSEOExpanderLinks").slideUp('fast');
		//$(".footerBox").css('height','17em');
		$("#dealerSEOExpander").attr('src', resources + "/images/tableRowExpand.gif");
}
