﻿$(function() {
    var showScrollPane = true;
    jQuery.each(jQuery.browser, function(i, val) {
    if ((i == "safari" && val) || (i == "msie" && val && jQuery.browser.version == "6.0")) {
            showScrollPane = false;
        }
    });
    if (showScrollPane) {
        $('.scrollPane').jScrollPane();
    }
});

