var LM = {
  init: function () {
    LM.front_hover.setup();
$('.year_links').html('LETNO POROCILO <a href="http://lp2010.l-m.si">2010</a></div> <span>|</span><a class="current" href="http://lp2009.l-m.si">2009</a><span>|</span><a href="http://lp2008.l-m.si">2008</a>');
  },


  front_hover: {
    setup: function() {      
      $('#front_block_content div ul li.overlay').hover(LM.front_hover.hover_element, LM.front_hover.unhover_element);
    },

    hover_element: function() {        
        var height = $(this).parent().height();        
        var width = $(this).width();
        $(this).append("<div class=\"front_overlay\" style=\"height:"+height+"px;width:"+width+";\"><a class=\"overlay_link\" href=\""+ $(this).attr('rel') +"\"></a></div>")
    },

    unhover_element: function() {
        $('.front_overlay').remove();
        $('.overlay_link').remove();
    }
  }
};

$(document).ready(LM.init);

