	/*----------------------------------------------------*/
	/*	Java Script for sophisticattzz.com						*/
	/*	Author:	Derek Carvell										*/
	/* Date:		18 November 2008									*/
	/*	Version:	1.0													*/
	/*	History															*/
	/*-------------+-----------+--------------------------*/
	/*	Date			|	Version	|		Description				*/
	/*-------------+-----------+--------------------------*/
	/* 18/11/2008	|	1.0		| Original						*/
	/* 01/03/2010	|	2.0		| For new version of css	*/
	/*-------------+-----------+--------------------------*/


	startList = function() {
		if (document.all&&document.getElementById) {
			navRoot = document.getElementById("nav");
			for (i=0; i<navRoot.childNodes.length; i++) {
				node = navRoot.childNodes[i];
				if (node.nodeName=="LI") {
					node.onmouseover=function() {
						this.className+=" over";
				  }
		  			node.onmouseout=function() {
					  this.className=this.className.replace(" over", "");
		   		}
		   	}
		  	}
		 }
	}
	window.onload=startList;