﻿var hidemenu = false;
var hidesubmenu = false;

function keepMenu() {
    clearTimeout(hidemenu);
}

function hideMenu() {
    hidemenu = setTimeout("startHide()", 100);
}

function startHide() {
    $("#menuParent").hide("fast");
}

function showSubMenu(obj, submenu, amt) {
    $menu = $("#" + submenu);
    $button = $(obj);
    pos = $button.offset();
    newamt = amt + 1;
    $menu.css({ "left": (pos.left + 220) + "px", "top": (pos.top - newamt) + "px" }).show("fast");
}

function hideSubMenu(submenu) {
    hidesubmenu = setTimeout("startSubHide('" + submenu + "')", 100);
}

function keepSubMenu() {
    clearTimeout(hidesubmenu);
}

function startSubHide(submenu) {
    $("#" + submenu).hide("fast");
}


function hideSubSubMenu(submenu) {
    hidesubsubmenu = setTimeout("startSubSubHide('" + submenu + "')", 1);
}

function keepSubSubMenu() {
    clearTimeout(hidesubsubmenu);
}

function startSubSubHide(submenu) {
    $("#" + submenu).hide("fast");
}

function hideAllSubSubs() {
    $("#subMenuThree").hide();
    $("#subMenuFour").hide();
    $("#subMenuFive").hide();
    $("#subMenuSix").hide();
}

htmlVar = '';
htmlVar += '<div class="menu" id="menuParent" onmouseover="keepMenu();" onmouseout="hideMenu();">';
htmlVar += '      <table width="100%" cellpadding="0" cellspacing="0">';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/legal_documents/individuals\'" style="height:30px;border-bottom:1px #000000 solid;" id="_individuals" onmouseover="this.style.backgroundColor=\'#c7d0db\';showSubMenu(this,\'subMenuOne\',0);" onmouseout="this.style.backgroundColor=\'\';hideSubMenu(\'subMenuOne\');">';
htmlVar += '             Documents For Individuals';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/legal_documents/small_business\'" style="height:30px;" id="_smallbusiness" onmouseover="this.style.backgroundColor=\'#c7d0db\';showSubMenu(this,\'subMenuTwo\',0);" onmouseout="this.style.backgroundColor=\'\';hideSubMenu(\'subMenuTwo\');">';
htmlVar += '             Documents For Small Businesses';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '      </table>';
htmlVar += '      </div>';
htmlVar += '      <div class="menu" id="subMenuOne" onmouseover="keepMenu();keepSubMenu();" onmouseout="hideMenu();hideSubMenu(this.id);">';
htmlVar += '        <table width="100%" cellpadding="0" cellspacing="0">';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/agent_manager_contract\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\';hideAllSubSubs();" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Agent / Manager Contracts';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/bill_of_sale\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\';hideAllSubSubs();showSubMenu(this,\'subMenuThree\',0);" onmouseout="this.style.backgroundColor=\'\';hideSubSubMenu(\'subMenuThree\')">';
htmlVar += '             Automobile And Merchandise Sales';
htmlVar += '          </td>';
htmlVar += '        </tr>        ';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/construction_contracts\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\';hideAllSubSubs();" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Construction Contracts';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/easement_deeds\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\';hideAllSubSubs();" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Easement Deeds';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/eviction_notice\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\';hideAllSubSubs();showSubMenu(this,\'subMenuFive\',62);" onmouseout="this.style.backgroundColor=\'\';hideSubSubMenu(\'subMenuFive\')">';
htmlVar += '             Eviction Notices';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/lease_agreements\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\';hideAllSubSubs();showSubMenu(this,\'subMenuSix\',62);" onmouseout="this.style.backgroundColor=\'\';hideSubSubMenu(\'subMenuSix\')">';
htmlVar += '             Lease Agreements';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/lease_release\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\';hideAllSubSubs();" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Lease Release';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/horse_contracts\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\';hideAllSubSubs();showSubMenu(this,\'subMenuSeven\',62);" onmouseout="this.style.backgroundColor=\'\';hideSubSubMenu(\'subMenuSeven\')">';
htmlVar += '             Horse Contracts';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/last_will_and_testament\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\';hideAllSubSubs();" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Last Will And Testament';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/living_will\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\';hideAllSubSubs();" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Living Will';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/power_of_attorney\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\';hideAllSubSubs();showSubMenu(this,\'subMenuEight\',0);" onmouseout="this.style.backgroundColor=\'\';hideSubSubMenu(\'subMenuEight\')">';
htmlVar += '             Power Of Attorney';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/quit_claim\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\';hideAllSubSubs();showSubMenu(this,\'subMenuFour\',0);" onmouseout="this.style.backgroundColor=\'\';hideSubSubMenu(\'subMenuFour\')">';
htmlVar += '             Property Transfer Deeds';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/power_of_attorney_revocation\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\';hideAllSubSubs();" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Power Of Attorney Revocation';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/promissory_note\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\';hideAllSubSubs();showSubMenu(this,\'subMenuNine\',0);" onmouseout="this.style.backgroundColor=\'\';hideSubSubMenu(\'subMenuNine\')">';
htmlVar += '             Loan Documents';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/prenuptial_agreement\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\';hideAllSubSubs();" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Prenuptial Agreements';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/real_estate_purchase_contract\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\';hideAllSubSubs();" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Real Estate Purchase Contract';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/release_of_liability\'" style="height:30px;" onmouseover="this.style.backgroundColor=\'#c7d0db\';hideAllSubSubs();showSubMenu(this,\'subMenuTen\',62);" onmouseout="this.style.backgroundColor=\'\';hideSubSubMenu(\'subMenuTen\')">';
htmlVar += '             Liability Waiver And Release';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '      </table>';
htmlVar += '      </div>';
htmlVar += '      <div class="menu" id="subMenuTwo" onmouseover="keepMenu();keepSubMenu();" onmouseout="hideMenu();hideSubMenu(this.id);">';
htmlVar += '        <table width="100%" cellpadding="0" cellspacing="0">';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/corporate_minutes\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Corporate Minutes';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/consultant_agreements\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Consultant Agreements';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/employment_agreements\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Employment Agreements';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/confidentiality_agreement\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Confidentiality Agreements';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/partnership_agreement\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Partnership Agreements';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td style="height:30px;" onclick="location=\'http://www.granitedocuments.com/limited_liability_company\'" class="menuItems" onmouseover="this.style.backgroundColor=\'#c7d0db\';hideAllSubSubs();showSubMenu(this,\'subMenuEleven\',152);" onmouseout="this.style.backgroundColor=\'\';hideSubSubMenu(\'subMenuEleven\')">';
htmlVar += '             Limited Liability Companies';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '      </table>';
htmlVar += '      </div>';
htmlVar += '      <div class="menu" style="width:300px;" id="subMenuEleven" onmouseover="keepMenu();keepSubMenu();keepSubSubMenu();" onmouseout="hideMenu();hideSubMenu(\'subMenuTwo\');hideSubSubMenu(this.id);">';
htmlVar += '      <table width="100%" cellpadding="0" cellspacing="0">';
htmlVar += '		<tr>';
htmlVar += '			<td width="50%" onclick="location=\'http://www.granitedocuments.com/limited_liability_company/arizona_llc\'" class="menuItems" style="height:20px;border-bottom:1px #000000 solid;border-right:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '			 Arizona LLC';
htmlVar += '			</td>';
htmlVar += '			<td onclick="location=\'http://www.granitedocuments.com/limited_liability_company/missouri_llc\'" class="menuItems" style="height:20px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '			 Missouri LLC';
htmlVar += '			</td>';
htmlVar += '		</tr>';
htmlVar += '		<tr>';
htmlVar += '			<td onclick="location=\'http://www.granitedocuments.com/limited_liability_company/arkansas_llc\'" class="menuItems" style="height:20px;border-bottom:1px #000000 solid;border-right:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '			 Arkansas LLC';
htmlVar += '			</td>';
htmlVar += '			<td onclick="location=\'http://www.granitedocuments.com/limited_liability_company/nevada_llc\'" class="menuItems" style="height:20px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '			 Nevada LLC';
htmlVar += '			</td>';
htmlVar += '		</tr>';
htmlVar += '		<tr>';
htmlVar += '			<td onclick="location=\'http://www.granitedocuments.com/limited_liability_company/california_llc\'" class="menuItems" style="height:20px;border-bottom:1px #000000 solid;border-right:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '			California LLC';
htmlVar += '			</td>';
htmlVar += '			<td onclick="location=\'http://www.granitedocuments.com/limited_liability_company/new_mexico_llc\'" class="menuItems" style="height:20px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '			 New Mexico LLC';
htmlVar += '			</td>';
htmlVar += '		</tr>';
htmlVar += '		<tr>';
htmlVar += '			<td onclick="location=\'http://www.granitedocuments.com/limited_liability_company/colorado_llc\'" class="menuItems" style="height:20px;border-bottom:1px #000000 solid;border-right:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '			 Colorado LLC';
htmlVar += '			</td>';
htmlVar += '			<td onclick="location=\'http://www.granitedocuments.com/limited_liability_company/new_york_llc\'" class="menuItems" style="height:20px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '			 New York LLC';
htmlVar += '			</td>';
htmlVar += '		</tr>';
htmlVar += '		<tr>';
htmlVar += '			<td onclick="location=\'http://www.granitedocuments.com/limited_liability_company/connecticut_llc\'" class="menuItems" style="height:20px;border-bottom:1px #000000 solid;border-right:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '			 Connecticut LLC';
htmlVar += '			</td>';
htmlVar += '			<td onclick="location=\'http://www.granitedocuments.com/limited_liability_company/north_carolina_llc\'" class="menuItems" style="height:20px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '			 North Carolina LLC';
htmlVar += '			</td>';
htmlVar += '		</tr>';
htmlVar += '		<tr>';
htmlVar += '			<td onclick="location=\'http://www.granitedocuments.com/limited_liability_company/delaware_llc\'" class="menuItems" style="height:20px;border-bottom:1px #000000 solid;border-right:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '			 Delaware LLC';
htmlVar += '			</td>';
htmlVar += '			<td onclick="location=\'http://www.granitedocuments.com/limited_liability_company/ohio_llc\'" class="menuItems" style="height:20px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '			 Ohio LLC';
htmlVar += '			</td>';
htmlVar += '		</tr>';
htmlVar += '		<tr>';
htmlVar += '			<td onclick="location=\'http://www.granitedocuments.com/limited_liability_company/florida_llc\'" class="menuItems" style="height:20px;border-bottom:1px #000000 solid;border-right:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '			 Florida LLC';
htmlVar += '			</td>';
htmlVar += '			<td onclick="location=\'http://www.granitedocuments.com/limited_liability_company/oklahoma_llc\'" class="menuItems" style="height:20px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '			 Oklahoma LLC';
htmlVar += '			</td>';
htmlVar += '		</tr>';
htmlVar += '		<tr>';
htmlVar += '			<td onclick="location=\'http://www.granitedocuments.com/limited_liability_company/georgia_llc\'" class="menuItems" style="height:20px;border-bottom:1px #000000 solid;border-right:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '			 Georgia LLC';
htmlVar += '			</td>';
htmlVar += '			<td onclick="location=\'http://www.granitedocuments.com/limited_liability_company/oregon_llc\'" class="menuItems" style="height:20px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '			 Oregon LLC';
htmlVar += '			</td>';
htmlVar += '		</tr>';
htmlVar += '		<tr>';
htmlVar += '			<td onclick="location=\'http://www.granitedocuments.com/limited_liability_company/idaho_llc\'" class="menuItems" style="height:20px;border-bottom:1px #000000 solid;border-right:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '			 Idaho LLC';
htmlVar += '			</td>';
htmlVar += '			<td onclick="location=\'http://www.granitedocuments.com/limited_liability_company/pennsylvania_llc\'" class="menuItems" style="height:20px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '			 Pennsylvania LLC';
htmlVar += '			</td>';
htmlVar += '		</tr>';
htmlVar += '		<tr>';
htmlVar += '			<td onclick="location=\'http://www.granitedocuments.com/limited_liability_company/illinois_llc\'" class="menuItems" style="height:20px;border-bottom:1px #000000 solid;border-right:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '			 Illinois LLC';
htmlVar += '			</td>';
htmlVar += '			<td onclick="location=\'http://www.granitedocuments.com/limited_liability_company/south_carolina_llc\'" class="menuItems" style="height:20px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '			 South Carolina LLC';
htmlVar += '			</td>';
htmlVar += '		</tr>';
htmlVar += '		<tr>';
htmlVar += '			<td onclick="location=\'http://www.granitedocuments.com/limited_liability_company/indiana_llc\'" class="menuItems" style="height:20px;border-bottom:1px #000000 solid;border-right:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '			 Indiana LLC';
htmlVar += '			</td>';
htmlVar += '			<td onclick="location=\'http://www.granitedocuments.com/limited_liability_company/tennessee_llc\'" class="menuItems" style="height:20px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '			 tennessee LLC';
htmlVar += '			</td>';
htmlVar += '		</tr>';
htmlVar += '		<tr>';
htmlVar += '			<td onclick="location=\'http://www.granitedocuments.com/limited_liability_company/iowa_llc\'" class="menuItems" style="height:20px;border-bottom:1px #000000 solid;border-right:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '			 Iowa LLC';
htmlVar += '			</td>';
htmlVar += '			<td onclick="location=\'http://www.granitedocuments.com/limited_liability_company/texas_llc\'" class="menuItems" style="height:20px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '			Texas LLC';
htmlVar += '			</td>';
htmlVar += '		</tr>';
htmlVar += '		<tr>';
htmlVar += '			<td onclick="location=\'http://www.granitedocuments.com/limited_liability_company/kansas_llc\'" class="menuItems" style="height:20px;border-bottom:1px #000000 solid;border-right:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '			 Kansas LLC';
htmlVar += '			</td>';
htmlVar += '			<td onclick="location=\'http://www.granitedocuments.com/limited_liability_company/utah_llc\'" class="menuItems" style="height:20px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '			 Utah LLC';
htmlVar += '			</td>';
htmlVar += '		</tr>';
htmlVar += '		<tr>';
htmlVar += '			<td onclick="location=\'http://www.granitedocuments.com/limited_liability_company/kentucky_llc\'" class="menuItems" style="height:20px;border-bottom:1px #000000 solid;border-right:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '			 Kentucky LLC';
htmlVar += '			</td>';
htmlVar += '			<td onclick="location=\'http://www.granitedocuments.com/limited_liability_company/virginia_llc\'" class="menuItems" style="height:20px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '			 Virginia LLC';
htmlVar += '			</td>';
htmlVar += '		</tr>';
htmlVar += '		<tr>';
htmlVar += '			<td onclick="location=\'http://www.granitedocuments.com/limited_liability_company/maryland_llc\'" class="menuItems" style="height:20px;border-bottom:1px #000000 solid;border-right:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '			 Maryland LLC';
htmlVar += '			</td>';
htmlVar += '			<td onclick="location=\'http://www.granitedocuments.com/limited_liability_company/washington_llc\'" class="menuItems" style="height:20px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '			 Washington LLC';
htmlVar += '			</td>';
htmlVar += '		</tr>';
htmlVar += '		<tr>';
htmlVar += '			<td onclick="location=\'http://www.granitedocuments.com/limited_liability_company/michigan_llc\'" class="menuItems" style="height:20px;border-bottom:1px #000000 solid;border-right:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '			 Michigan LLC';
htmlVar += '			</td>';
htmlVar += '			<td onclick="location=\'http://www.granitedocuments.com/limited_liability_company/west_virginia_llc\'" class="menuItems" style="height:20px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '			 West Virginia LLC';
htmlVar += '			</td>';
htmlVar += '		</tr>';
htmlVar += '		<tr>';
htmlVar += '			<td onclick="location=\'http://www.granitedocuments.com/limited_liability_company/minnesota_llc\'" class="menuItems" style="height:20px;border-bottom:1px #000000 solid;border-right:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '			 Minnesota LLC';
htmlVar += '			</td>';
htmlVar += '			<td onclick="location=\'http://www.granitedocuments.com/limited_liability_company/wisconsin_llc\'" class="menuItems" style="height:20px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '			 Wisconsin LLC';
htmlVar += '			</td>';
htmlVar += '		</tr>';
htmlVar += '        <tr>';
htmlVar += '            <td onclick="location=\'http://www.granitedocuments.com/limited_liability_company/mississippi_llc\'" class="menuItems" style="height:20px;border-right:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '			 Mississippi LLC';
htmlVar += '			</td>';
htmlVar += '            <td style="height:20px;background-color:#c7d0db;" align="left">';
htmlVar += '			&nbsp;';
htmlVar += '			</td>';
htmlVar += '        </tr>';
htmlVar += '        </table>';
htmlVar += '        </div>';
htmlVar += '      <div class="menu" id="subMenuTen" onmouseover="keepMenu();keepSubMenu();keepSubSubMenu();" onmouseout="hideMenu();hideSubMenu(\'subMenuOne\');hideSubSubMenu(this.id);">';
htmlVar += '        <table width="100%" cellpadding="0" cellspacing="0">';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/release_of_liability/pwaiver\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Parental Waiver';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/release_of_liability/rol\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Release Of Liability';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/release_of_liability/waiver\'" style="height:30px;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Waiver Of Liability';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '      </table>';
htmlVar += '      </div>';
htmlVar += '      <div class="menu" id="subMenuNine" onmouseover="keepMenu();keepSubMenu();keepSubSubMenu();" onmouseout="hideMenu();hideSubMenu(\'subMenuOne\');hideSubSubMenu(this.id);">';
htmlVar += '        <table width="100%" cellpadding="0" cellspacing="0">';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/promissory_note/installment_agreement\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Installment Agreement';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/promissory_note/promissory_note\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Promissory Note';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/promissory_note/security_pledge\'" style="height:30px;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Security Pledge';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '      </table>';
htmlVar += '      </div>';
htmlVar += '      <div class="menu" id="subMenuEight" onmouseover="keepMenu();keepSubMenu();keepSubSubMenu();" onmouseout="hideMenu();hideSubMenu(\'subMenuOne\');hideSubSubMenu(this.id);">';
htmlVar += '        <table width="100%" cellpadding="0" cellspacing="0">';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/power_of_attorney/general\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             General Power Of Attorney';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/power_of_attorney/general\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Limited Power Of Attorney';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/power_of_attorney/healthcare\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Healthcare Power Of Attorney';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/power_of_attorney/custodial\'" style="height:30px;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Custodial Power Of Attorney';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '      </table>';
htmlVar += '      </div>';
htmlVar += '      <div class="menu" id="subMenuThree" onmouseover="keepMenu();keepSubMenu();keepSubSubMenu();" onmouseout="hideMenu();hideSubMenu(\'subMenuOne\');hideSubSubMenu(this.id);">';
htmlVar += '        <table width="100%" cellpadding="0" cellspacing="0">';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/bill_of_sale/bill_of_sale_information\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Vehicle Bill Of Sale';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/bill_of_sale/vehicle_purchase_agreement_information\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Vehicle Purchase Agreement';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/bill_of_sale/merchandise_bill_of_sale_information\'" style="height:30px;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Merchandise Bill Of Sale';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '      </table>';
htmlVar += '      </div>';
htmlVar += '      <div class="menu" id="subMenuFour" onmouseover="keepMenu();keepSubMenu();keepSubSubMenu();" onmouseout="hideMenu();hideSubMenu(\'subMenuOne\');hideSubSubMenu(this.id);">';
htmlVar += '        <table width="100%" cellpadding="0" cellspacing="0">';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/quit_claim/quit_claim\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Quit Claim Deed';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/quit_claim/warranty\'" style="height:30px;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Warranty Deed';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '      </table>';
htmlVar += '      </div>';
htmlVar += '      <div class="menu" id="subMenuFive" onmouseover="keepMenu();keepSubMenu();keepSubSubMenu();" onmouseout="hideMenu();hideSubMenu(\'subMenuOne\');hideSubSubMenu(this.id);">';
htmlVar += '        <table width="100%" cellpadding="0" cellspacing="0">';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/eviction_notice/nuisance\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Notice For Nuisance';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/eviction_notice/comply\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Notice To Comply With Lease';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/eviction_notice/norent\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Notice To Pay Rent';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/eviction_notice/vacate\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Notice To Vacate';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/eviction_notice/terminate\'" style="height:30px;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Notice To Terminate Tenancy';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '      </table>';
htmlVar += '      </div>';
htmlVar += '      <div class="menu" id="subMenuSix" onmouseover="keepMenu();keepSubMenu();keepSubSubMenu();" onmouseout="hideMenu();hideSubMenu(\'subMenuOne\');hideSubSubMenu(this.id);">';
htmlVar += '        <table width="100%" cellpadding="0" cellspacing="0">';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/lease_agreements/commercial\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Commercial Lease';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/lease_agreements/residential\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Residential Lease';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/lease_agreements/agricultural\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Agricultural Lease';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/lease_agreements/property\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Personal Property Lease';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/lease_agreements/automobile\'" style="height:30px;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Automobile Lease';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '      </table>';
htmlVar += '      </div>';
htmlVar += '      <div class="menu" id="subMenuSeven" onmouseover="keepMenu();keepSubMenu();keepSubSubMenu();" onmouseout="hideMenu();hideSubMenu(\'subMenuOne\');hideSubSubMenu(this.id);">';
htmlVar += '        <table width="100%" cellpadding="0" cellspacing="0">';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/horse_contracts/bill_of_sale\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Bill Of Sale';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/horse_contracts/boarding\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Boarding Agreement';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/horse_contracts/breeding\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Breeding Contract';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/horse_contracts/lease\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Lease Agreement';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/horse_contracts/rental\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Rental Agreement';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/horse_contracts/rentalrol\'" style="height:30px;border-bottom:1px #000000 solid;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Rental Agreement With Liability';
htmlVar += '          </td>';
htmlVar += '        </tr>';
htmlVar += '        <tr>';
htmlVar += '          <td class="menuItems" onclick="location=\'http://www.granitedocuments.com/horse_contracts/rol\'" style="height:30px;" onmouseover="this.style.backgroundColor=\'#c7d0db\'" onmouseout="this.style.backgroundColor=\'\'">';
htmlVar += '             Release Of Liability';
htmlVar += '          </td>';
htmlVar += '        </tr>        ';
htmlVar += '      </table>';
htmlVar += '      </div>';
$(document).ready(function () {
    $("#_menu").html(htmlVar);
});
