$().ready(function(){
    var $g = $('#about_gallery'), $gi = $('#about_gallery_images img');
    var ss = $gi.slideshow({
        delay: 6000,
        duration: 800,
        autostart: false
    });
    
    var $cn = $('#about_gallery_controls .next').click(function(){ ss.stop().next(); return false; }),
	    $cp = $('#about_gallery_controls .prev').click(function(){ ss.stop().prev(); return false; }).hide();
    
    $gi.bind('slideshow-post-in', function(){
    	if(ss.pointer == ss.last) {
    		$cn.fadeOut(150);
    	} else if(ss.pointer == 0){
    		$cp.fadeOut(200);
    	} else {
    		$().add($cn).add($cp).fadeIn(150);
    	}
    });
    
	if($gi.length <= 1)
		$('#about_gallery_controls').hide();
    



	$('#pane').jScrollPane({
        scrollbarWidth: 20,
        showArrows: true,
        dragMinHeight: 20,
        dragMaxHeight: 20
    });

    $('.jScrollPaneContainer').css({height: 440 });
	
});


