$(function(){

	// sliding fancy menu
    $("#menu-top>ul>li").hover(
        function() {
        	$('ul',this).show();
        },

        function() {
        	$('ul',this).hide();
        }
    );

    // stylized scrollbars
    $('#content').jScrollPane({
        showArrows:true,
        scrollbarWidth:10
    });

});
