$(function() {
    $('#scrollpane').jScrollPane({showArrows:true, scrollbarWidth:7, scrollbarMargin:10, animateTo:false});
	//$('#content ul li img.nav').animate({'opacity' : 0}, 0);
	$('#content ul li img.nav').hover(
		function(){
        	$(this).animate({'opacity' : 1}, 400);
        },
        function(){
        	$(this).animate({'opacity': 0}, 400);
		}
	);
	
	$(".product_detail").hover(function() {
		$(".product_map").stop().fadeIn();
	}, function() {
		$(".product_map").stop().css("opacity", 1).hide();
	});
	
	/*$("#content .bd .collection img.coll").hover(
		function() {
			this.src = this.src.replace("_off","_on");
		},
		function() {
			this.src = this.src.replace("_on","_off");
		}
	);*/
	
});
