
$(document).ready(function(){
	$('.product-gallery').jqGalViewII();

	$(".viewlist tr").mouseover(function() {$(this).addClass("over");}).mouseout(function() {$(this).removeClass("over");});
	$(".viewlist tr:even").addClass("alt");
	
	$(".dropshadow1 img").mouseover(function() {
		var $f = $(this);
		$f.css({opacity:".75"}).stop().animate({opacity:".01"},500).stop().animate({opacity:"1"},700);
	});
				
});


