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

$(document).ready(function(){
						   
	$("#intro").dropShadow({left: -1, top: -1, blur: 2, opacity: 1});				   
	$("h1").dropShadow({left: -1, top: -1, blur: 2, opacity: 1});					   		   
    $("#top_bar").dropShadow({left: -1, top: -1, blur: 2, opacity: .6});
	$(".sidebar").dropShadow({left: -1, top: -1, blur: 2, opacity: .6});
	$("table.topcatselect").dropShadow({left: -1, top: -1, blur: 2, opacity: .6});
	
		//$('.prodimage').each(function(){
 	//src = this.getAttribute('src');
	//if ((src=="prodimages/thumbs/") || (src=="undefined")) {
	//	this.setAttribute('src','images/no_image.gif');
	//};
	//});

	$('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;
	});	

  });