/**
 * entry.js
 *
 * @author Peter Molnar <molipet15@freemail.hu> 
 * @author Krisztian Balog <balog@greymatter.hu>
 * @version 1.1
 * 
 * @copyright Copyright (c) 2006-08, GreyMatter <www.greymatter.hu>
 */
 
$(document).ready(function() {
  // entries effekt
  // cover magasságának beállítása
  $("td.right div.cover").height($("td.right").height()-47); // 47px magas a Lates Blog... fejléc
  // a beúszó zöld csík hozzáadása a menü-elemekhez
  $("td.right a.entry div.item").each(function() {
    $(this).html($(this).html() + "<div class=green_stripe></div>");
  });
  // blog entries hover effekt
  $(".entry div").hover(
    function() {
      $(this).children(".green_stripe").animate({"width": "+=5px"}, 300);
      $(this).css("color", "#96c000");
    },
    function() {
      $(this).children(".green_stripe").animate({"width": "-=5px"}, 300);
      $(this).css("color", "#cacaca");
    }
  );
});
