// JavaScript Document
$(document).ready(function(){
    //gerundete Ecken       
    //$('.rounded').corners("10px")
    
    //Text in Spalten aufteilen 
    //    $('.wide').columnize({
    //        width: 400,
    //        buildOnce: true,
    //        overflow: {
    //            id: ".thin",
    //            height: 100,
    //            doneFunc: function(){
    //                $('.thin').columnize({
    //                    width: 200
    //                });
    //            }
    //        }
    //    })
    
    //Spalten auf gleiche Höhe bringen
    //    $("#leftColumn,#sidebar").equalizeCols("p,p");
    
    //Scrollbar für BODY setzen
    $('.scroll-pane').jScrollPane({
        showArrows: true,
        scrollbarWidth: 20
    });
    //	, scrollbarMargin:100
});

