/***************************************************************************************************
 
	Skuby.com:			External JavaScript Sheet (Skubs_Functions.js)
	Date:				Aug, 2003
	Creator:			Ian Skuby 
	
		Functionality:
			Navigator Dynamic Links;
			Style Sheet picking;
				 
***************************************************************************************************/

function getAEIFMenu()
{
	document.writeln('<table>')
	document.writeln('		<tr>')
	document.writeln('			<td>')
	document.writeln('				<a href="AEIF_I.html" style="color:#999999; font-weight:bold; text-decoration:none;">')
	document.writeln('					<span id="LinkF" onmouseover="LinksOver(MainMenu, 5)" onmouseout="LinksOut(MainMenu, 5)" style="position:relative; top:; width:200px; padding:5px 10px 5px 5px; font-size:15px; font-wieght:bold; text-align:center; border-width:1; border-style:solid; border-color:#999999;">')
	document.writeln('						AEIF I')
	document.writeln('					</span>')
	document.writeln('				</a>')
	document.writeln('			</td>')
	document.writeln('			<td>')
	document.writeln('				<a href="AEIF_II.html" style="color:#999999; font-weight:bold; text-decoration:none;">')
	document.writeln('					<span id="LinkG" onmouseover="LinksOver(MainMenu, 6)" onmouseout="LinksOut(MainMenu, 6)" style="position:relative; top:; width:200px; padding:5px 10px 5px 4px; font-size:15px; font-wieght:bold; text-align:center; border-width:1; border-style:solid; border-color:#999999;">')
	document.writeln('						AEIF II')
	document.writeln('					</span>')
	document.writeln('				</a>')
	document.writeln('			</td>')
	document.writeln('			<td>')
	document.writeln('				<a href="AEIF_III.html" style="color:#999999; font-weight:bold; text-decoration:none;">')
	document.writeln('					<span id="LinkH" onmouseover="LinksOver(MainMenu, 7)" onmouseout="LinksOut(MainMenu, 7)" style="position:relative; top:; width:200px; padding:5px 10px 5px 8px; font-size:15px; font-wieght:bold; text-align:center; border-width:1; border-style:solid; border-color:#999999;">')
	document.writeln('						AEIF III')
	document.writeln('					</span>')
	document.writeln('				</a>')
	document.writeln('			</td>')
	document.writeln('		</tr>')
	document.writeln('	</table>')
	
}

function getRealtyServicesMenu()
{
	document.writeln('<table>')
	document.writeln('		<tr>')
	document.writeln('			<td>')
	document.writeln('				<a href="ResidentialSales.html" style="color:#999999; font-weight:bold; text-decoration:none;">')
	document.writeln('					<span id="LinkI" onmouseover="LinksOver(MainMenu, 8)" onmouseout="LinksOut(MainMenu, 8)" style="position:relative; top:; width:200px; padding:5px 10px 5px 5px; font-size:15px; font-wieght:bold; text-align:center; border-width:1; border-style:solid; border-color:#999999;">')
	document.writeln('						Residential Sales')
	document.writeln('					</span>')
	document.writeln('				</a>')
	document.writeln('			</td>')
	document.writeln('			<td>')
	document.writeln('				<a href="ResidentialFinance.html" style="color:#999999; font-weight:bold; text-decoration:none;">')
	document.writeln('					<span id="LinkJ" onmouseover="LinksOver(MainMenu, 9)" onmouseout="LinksOut(MainMenu, 9)" style="position:relative; top:; width:200px; padding:5px 10px 5px 4px; font-size:15px; font-wieght:bold; text-align:center; border-width:1; border-style:solid; border-color:#999999;">')
	document.writeln('						Residential Finance')
	document.writeln('					</span>')
	document.writeln('				</a>')
	document.writeln('			</td>')
	document.writeln('			<td>')
	document.writeln('				<a href="BuyerRepresentation.html" style="color:#999999; font-weight:bold; text-decoration:none;">')
	document.writeln('					<span id="LinkK" onmouseover="LinksOver(MainMenu, 10)" onmouseout="LinksOut(MainMenu, 10)" style="position:relative; top:; width:200px; padding:5px 10px 5px 8px; font-size:15px; font-wieght:bold; text-align:center; border-width:1; border-style:solid; border-color:#999999;">')
	document.writeln('						Buyer Representation')
	document.writeln('					</span>')
	document.writeln('				</a>')
	document.writeln('			</td>')
	document.writeln('		</tr>')
	document.writeln('	</table>')
	
}

















































function getStyleSheet()
{
	document.writeln('<style type="text/css">')
	document.writeln('		<!--')
	document.writeln('')
	
	if (document.all)
	{
		document.writeln('		@import url("http://www.skuby.com/AlexSkuby/Scripts/Skubs.css");')
	}
	else
	{
		document.writeln('		@import url("http://www.skuby.com/AlexSkuby/Scripts/Skubs_Nav.css");')
	}
	
	document.writeln('')
	document.writeln('		-->')
	document.writeln('</style>')
}