// Add scrollbar to the gallery page
$(function() {
	$('#galleryUL').jScrollPane({showArrows:true, scrollbarWidth: 21, dragMinHeight:57, dragMaxHeight:57});
	
	$('.gallerypageUL li').hover(function() {
		$(this).addClass("hover");
	}, function() {
		$(this).removeClass("hover");	
	});
  
});

/*
$(document).ready(function() {
  $('.gallerypageUL li').hover(function() {
	$(this).addClass("hover");
  }, function() {
	$(this).removeClass("hover");	
  })
});
*/
