function mycarousel_initCallback(carousel) {
    jQuery('#pictures-left').bind('click', function() {
        carousel.prev();
        return false;
    });
    jQuery('#pictures-right').bind('click', function() {
        carousel.next();
        return false;
    });
};
$(document).ready(function(){	
	$('.scroll-pane').jScrollPane({scrollbarWidth:21});
	$("#pictures-items").jcarousel({
	    scroll: 1,
	    initCallback: mycarousel_initCallback,
	    buttonNextHTML: null,
	    buttonPrevHTML: null,
	    wrap: 'circular',
	    visible: 4
	});
	$('#active-1').mouseenter(function(){
		$('#active-1-menu').slideToggle();
		$('#active-1 a').not('#active-1-menu a').css("font-weight","bold");
		$('#active-1 a').not('#active-1-menu a').css("text-decoration","underline");
		$('#active-1 a').not('#active-1-menu a').css("background-position","0 -114px");
	})
	$ ('#active-1').mouseleave(function(){
		$('#active-1-menu').slideToggle();
		$('#active-1 a').not('#active-1-menu a').css("font-weight","normal");
		$('#active-1 a').not('#active-1-menu a').css("text-decoration","none");
		$('#active-1 a').not('#active-1-menu a').css("background-position","0 0");
	});
	
	$(".level-2-2-5, .level-2-2-5-1").click(function(){
		return false;
	});
});

