$(document).ready(function() {

// Implement the jScrollPane plugin
	$('#panel').jScrollPane({showArrows:true});
	

// Change the opactiy of the thumbnails when hovering
	$("#thumbnails li a").hover(function(){
    	$(this).fadeTo("slow",  0.3);
    	},function(){
    	$(this).fadeTo("slow", 1);
    });
});
