var LM = {
  init: function () {
    LM.front_hover.setup();
  },


  front_hover: {
    setup: function() {      
      $('#front_block_content div ul li').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);

$(document).ready(function(){
	$('#header').html('<div class="other_links"><a href="http://lp2008.l-m.si" class="sel">LETNO PORO&#268;ILO 2008</a> | <a href="http://lp2009.l-m.si">LETNO PORO&#268;ILO 2009</a> | <a href="http://lp2010.l-m.si">LETNO PORO&#268;ILO 2010</a></div><a href="index.html"><img alt="Letno porocilo 2008" src="images/glava.png"></a>');
	$('.container #header').css('position', 'relative');
	$('.other_links').css('position', 'absolute').css('left', '0').css('margin-left', '210px').css('font-size', '12px').css('font-weight', 'bold').css('color', '#808080').css('margin-top', '10px');
	$('.other_links a').css('color', '#808080');
	$('.other_links a.sel, .other_links a:hover').css('color', '#007435');
});
