$(document).ready(function() {


$('#content_scroll').jScrollPane({showArrows:true});


var title;
$("#navigation li:not(#nava)").hover(function () {
    title = $(this).attr("class");
    //alert(title);
    $("#colorbox").addClass(title+"c");
    $(this).addClass(title+"hover");
},
function () {
    $("#colorbox").removeClass(title+"c");
    $(this).removeClass(title+"hover");
});


$('.ilast').hide();

$('.ifirst').click(function() {
  $('.ilast').hide();
  $(this).next().fadeIn();
});

$('.ilast').click(function() {
  $(this).hide();
});

});


