$(document).ready(function(){	
	$("#banner").cycle({
		fx:      'fade',
	    speed:    500,
	    timeout:  4000
	});
	
	$("#slider").cycle({
		fx:		'fade',
		speed:	'fast',
		timeout: 0,
		next:	'#nextBtn',
		prev:	'#prevBtn',
		speed:	500
	});
	
	$("#slider li a").lightBox({
		imageLoading: "/images/lightbox/loading.gif",
		imageBtnClose: "/images/lightbox/close.gif",
		imageBtnPrev: "/images/lightbox/prev.gif",
		imageBtnNext: "/images/lightbox/next.gif",
		imageBlank: "/images/lightbox/blank.gif"
	});
	
	startList = function() {
		if (document.all&&document.getElementById) {
			navRoot = document.getElementById("categories");
			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", "");
					}
				}
			}
		}
	}
});