$(document).ready(function(){

	$("ul#categories li a").hover(
		function(){ $(this).addClass('hover') },
		function(){ $(this).removeClass('hover') }
	);

	$("ul#categories li a.category-toggle").each(function () {
		$(this).click(function (){
			$("ul"+$(this).attr("href")).toggle();
			return false;
		});
	});

	$("ul#categories li ul").hide();

	$("ul#categories li ul").each(function () {
		var category = this;
		$("a", this).each(function () {
			if (document.location.href.substring(0, this.href.length) == this.href) {
				$(category).show();
			}
		});
	});

	$("ul#dropdown li").hover(
		function(){ $(this).addClass('hover') },
		function(){ $(this).removeClass('hover') }
	);

	$("div#top-tabs ul li").hover(
		function(){ $(this).addClass('hover') },
		function(){ $(this).removeClass('hover') }
	);

	$("div#bottom-tabs ul li").hover(
		function(){ $(this).addClass('hover') },
		function(){ $(this).removeClass('hover') }
	);

	_uacct = "UA-299569-6";
	urchinTracker();
});

function toggle(item) {
	var theItem = document.getElementById(item);
	theItem.style.display = (theItem.style.display=='none') ? '' : 'none';
	return false;
}
function submitAction (ca) {
	document.cartform.cartaction.value = ca;
	document.cartform.submit ();
}
function tip (id) {
	window.open ('/tips/view.php?id=' + id, '', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=500,height=400');
}
function redirect (url) {
	this.location = url
}