jQuery(document).ready(function(){
    jQuery("#images").jCarouselLite({
        btnNext: "#left",
        btnPrev: "#right",
        visible: 15
    });
    jQuery("#news").lionbars('dark', true, true, true);
	
    jQuery(".menu_down").click(function(){
        jQuery(this).hide();
        jQuery(this).prev().first().show();
        return false;
    });
    jQuery(".menu_up").click(function(){
        jQuery(this).parent().next().first().show();
        jQuery(this).parent().hide();
        return false;
    });		
});
