window.onload = function() {
	
	//$(".prodimage").dropShadow({left: -1, top: -1, blur: 2, opacity: 1});
	
};

$(document).ready(function(){
						   
	$("#VerColMenu > ul > li > a").find("+ ul").hide();
	// Expand or collapse:
	$("#VerColMenu > ul > li > a").click(function() {
		$(this).find("+ ul").slideToggle("fast");
		$(this).toggleClass("active");
		$("#VerColMenu > ul > li > a").not(this).find("+ ul").slideUp("fast");
		$("#VerColMenu > ul > li > a").not(this).removeClass("active");
	});
	
	$('table.topcatselect td').hover(function() {
		if ($(this).find("a").attr("href")) {									 
  			$(this).addClass('hover');
		};
	}, function() {
  		$(this).removeClass('hover');
	});
	$("table.topcatselect td").click(function(){
		
		if ($(this).find("a").attr("href")) {
	  	window.location=$(this).find("a").attr("href");
		};
		return false;
	});	

  });