$(document).ready(function(){
	$(window).resize(function(){
		$('#scroll-pane').jScrollHorizontalPane({scrollbarHeight:12, scrollbarMargin:0, resize:true});
	});
	
	
	$('#scroll-pane .detail').hover(
	
		function(){
			$(this).find(".caption").stop().fadeTo(300,1);
		},
		function() {
			$(this).find(".caption").stop().fadeTo(300,0)
		});

	$('#scroll-pane').jScrollHorizontalPane({scrollbarHeight:12, scrollbarMargin:0,  resize:true});

});
