$(function() {
  $('.menu a').hover(function() {
    $(this).addClass('hover').find('img').addClass('hover', 150);
  },
  function() {
    $(this).stop().attr('style', '').removeClass('hover', 400)
        .find('img').stop().attr('style', '').removeClass('hover', 300);
  });
  
  //$('#left_menu').delay(300).removeClass('init', 300);
  
  $('a').each(function() {
    if ($(this).attr('href') == location.pathname)
      $(this).addClass('selected');
  });

  var options = {timeout: 8000, speed: 1000, random: true};
  $('#slideshow').cycle(options);
});



