$(document).ready(function(){
	$(window).resize(function(){
	$('#scroll-pane').jScrollHorizontalPane({scrollbarHeight:10, scrollbarMargin:0, showArrows:false, resize:true});
	
})
	
	

$('#scroll-pane dl').hover(
	function(){
		$(this).find('.caption').fadeIn()
	},
	function() {
	$(this).find('.caption').fadeOut('slow')
	})

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


});