

// CHECK BROWSER TYPE
var browserName = navigator.appName;
var browserVersion = parseInt(navigator.appVersion);
var browser;

// ALIGN BUTTONS
function alignButtons()
{
if (browserName == "Netscape") 
{
	document.write('<a href="index.html"><img src="images/buttonHome.jpg" width="103" height="41" alt="" border="0"></a><a href="aboutus.html" ><img src="images/buttonAbout.jpg" width="136" height="41" alt="" border="0"></a><a href="services.html" ><img src="images/buttonServices.jpg" width="127" height="41" alt="" border="0"></a><a href="products.html" ><img src="images/buttonProducts.jpg" width="138" height="41" alt="" border="0"></a><a href="faqs.html" ><img src="images/buttonFaq.jpg" width="97" height="41" alt="" border="0"></a><a href="contact.html" ><img src="images/buttonContact.jpg" width="151" height="41" alt="" border="0"></a>');
}
else
{
	document.write('<p style="margin:0,0,0,0"><a href="index.html"><img src="images/buttonHome.jpg" width="103" height="41" alt="" border="0"></a><a href="aboutus.html" ><img src="images/buttonAbout.jpg" width="136" height="41" alt="" border="0"></a><a href="services.html" ><img src="images/buttonServices.jpg" width="127" height="41" alt="" border="0"></a><a href="products.html" ><img src="images/buttonProducts.jpg" width="138" height="41" alt="" border="0"></a><a href="faqs.html" ><img src="images/buttonFaq.jpg" width="97" height="41" alt="" border="0"></a><a href="contact.html" ><img src="images/buttonContact.jpg" width="151" height="41" alt="" border="0"></a></p>');
}

}// end function align
