//jQuery init
jQuery(document).ready(function($){
     //scrollpane
    //$('#pane2').jScrollPane({scrollbarWidth: 16});
	$('#pane1').jScrollPane({showArrows:true});
    $('#pane2').jScrollPane({showArrows:true});
    $("#portals-button").click(function(){
	    $("#portals-box").toggle();
	    return false;
    });
    //$("#portals-box").click(function(){
	    //$("#portals-box").toggle();
	    //return false;
    //});

});

