jQuery.noConflict();
jQuery(document).ready(function(){
    jQuery("#c4").hide();
    jQuery("#c5").hide();
    jQuery("#c6").hide();
    jQuery("#c7").hide();
    jQuery("#c6").css({
			width: 440,
			left: 345
		});
    jQuery("#c4").fadeIn(800);
    jQuery("#c5").fadeIn(800, function(){
    jQuery("#c6").fadeIn(800);
    jQuery("#c7").fadeIn(800, function(){
            jQuery('.scrollable').jScrollPane({
                scrollbarWidth: 1,
                showArrows: false,
                reinitialiseOnImageLoad: true,
                dragMinHeight: 25,
                dragMaxHeight: 25
            });
        });
    });

});