var base_url = "http://www.art-decks.com/";

function highlight() {
  $("#menu a").each(function(){
    var current_href = $(this).attr("href");
    if (!$.browser.msie) {
      current_href = base_url + current_href;
    }
    if (document.location == current_href) {
      $(this).addClass("active");
    }
  });
}

$(document).ready(function(){
  $("#slider").easySlider({
    prevText: '<img src="images/previous.png" alt="Previous" />',
    nextText: '<img src="images/next.png" alt="Previous" />',
    continuous: true,
    speed: 600
  });
  highlight();
});
