
/*	===============================================================
	© MARDAK LIMITED
	http://www.mardak.co.uk/

	Type:				Site Global Javascript functions
	Build by:			www.brightenupme.com
	Original Author:	James Bates
	Author Email:		james@exit7.co.uk
	Creation Date:		20 December 2007
	---------------------------------------------------------------
	Version number: 	1.0
	Last edited:		NA - Still in developement
	============================================================ */
	
	
	// Sons of suckerfish Javascript - http://www.htmldog.com/articles/suckerfish/
	sfHover = function() {
	var sfEls = document.getElementById("nav1").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
	sfEls[i].onmouseover=function() {
	this.className+=" sfhover";
	}
	sfEls[i].onmouseout=function() {
	this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
	}
	}
	}
	if (window.attachEvent) window.attachEvent("onload", sfHover);