/*--------------------------------------
	Title: TOPNAV SINGLE LEVEL DROP
	Author: Daniel Pinnick
	Company: 1105 Media
	Description: Site Specific Scripts
	Version: 2008
========================================*/


//--- [  Drop Menu  ] -----------------------------------------------------------------|
function dropMenu() {//v1.1s dp
 var s1, s2, b="block", n="none";
 if(navigator.appVersion.indexOf("MSIE") == -1) { return; }
 var i, reg=/\s*over/,li=document.getElementById("topnavlist").getElementsByTagName("LI");
	for (i=0; i<li.length; i++) {
		li[i].onmouseover=function() {
			this.className+=' over';
		};
		li[i].onmouseout=function() {
			this.className=this.className.replace(reg,'');
		};
	}
}
AddEvent(window,"load",dropMenu);

 
   
