$(document).ready(function() {
    // Replace Text Header
    $(".image-replace").each(function() {
        string = $(this).text();
        filename = string.toLowerCase().replace(/ /g, '-').replace(/([^0-9a-z-])/g, '');
        filelocation = ""
        $(this).html('<img src="' + filelocation + 'graphics/' + filename + '.png" alt="' + string + '" title="' + string + '" />');
    });
//    $('.scroll-pane').jScrollPane();

//    $(".pane-list li").click(function() {
//        window.location = $(this).find("a").attr("href"); return false;
    //    });
    //    $(".menu2 a").append("<em></em>");
    //
  //  $(".menu2 a").hover(function() {
    //    $(this).find("em").animate({ opacity: "show", top: "-75" }, "slow");
      //  var hoverText = $(this).attr("title");
        //$(this).find("em").text(hoverText);
//    }, function() {
  //      $(this).find("em").animate({ opacity: "hide", top: "-85" }, "fast");
    //});

});
