

brandColor = brandColor.replace("#","");
document.write("<style type='text/css'>");
document.write("a.lm-button, a.lm-button span { background: transparent url('"+previewUrl+"/utility/Theme_Graphics/LM/"+brandColor+"_LM.jpg') no-repeat scroll; ");
document.write("a.lm-button { background-position: right top;} a.lm-button span{ background-position: 0 0;}"); 
document.write("</style>");

$(document).ready(function() {

    $("span.lmLink > a").each(function() {

    $(this).html("");
    if(lmLabel)
    	$(this).html("<span>"+lmLabel+"</span>");
    else
    	$(this).html("<span>Learn-More</span>");

    $(this).addClass("lm-button");
	
	
     });
 });
