// --------- start of jQuery document.ready() ---------- //
  
$(document).ready(function() {
  
   //map - pick your country
   var trida = '';
   var tridaCanvas = '';
   var tridaIE = '';
   
   $('.map > *').hover(
    function() {
      trida = '.'+$(this).attr('class');
      $(trida).addClass('hover');
      tridaCanvas = $(this).attr('class');
      $('div.canvas').addClass(tridaCanvas);
      $(trida).find('h3 a').animate({paddingLeft: "14px"}, 150);
   },
    function() {
      $(trida).removeClass('hover');
      $(trida).parent().removeClass(tridaIE);
      $('div.canvas').removeClass(tridaCanvas);
      $(trida).find('h3 a').animate({paddingLeft: "33px"}, 100);
   }
   );
   
   $('.inside-event .event-info h3:first, .post-event-info h3:first').addClass('headline');
   
   $('#breadcrumb p a:first').css({background: 'none', paddingLeft: '0'});
   
   //adding some border to .event boxex
   $('#previous-events').append('<div style="background:White; height: 240px; width: 2px; position: absolute; left: 49.5%; top: 100px;"></div>');
  
   //removing left border in the first LI in footer navigation
   $("#footer ul li:first").css({border: 'none', paddingLeft: '0', marginLeft: '0'});
   
   //some animations for bottom navigation
   $('#footer li a:not(.active)').hover(function() {$(this).animate({paddingTop: "3px"}, 100);}, function() {$(this).animate({paddingTop: "0px"}, 100);});

});

// -------- end of jQuery document.ready() ---------- //