$(document).ready(function(){

	$('#textbox').jScrollPane({scrollbarWidth:11,showArrows:true});
	$('#subnavi').jScrollPane({scrollbarWidth:11,showArrows:true});

	$('#slider a').lightBox({fixedNavigation:true});
	

    $("#gnavf").click(function () { 

        $('div.image:first').hide('slow', function () {
            $('div.image:first').remove().appendTo("#slider").show('slow');
		$("#slider a").livequery(function(){
   			$("#slider a").lightBox({fixedNavigation:true});
 		});
        });   
    });

    $("#gnavb").click(function () { 
        $('div.image:last').hide('slow', function () {
            $('div.image:last').remove().prependTo("#slider").show('slow');
		$("#slider a").livequery(function(){
   			$("#slider a").lightBox({fixedNavigation:true});
 		});
        });  
    });
    
//    $("#teaser-cp").click(function () { 
//    $('#teaserslide').hide('slow');
//        $('#teaser-cp').hide('slow');
//     $('#teaserslide').show('slow');
//    });
  });

