/* ----------------------------
  coder:    maik ellerbrock
  date:     15.06.2010
  version:  1.00

   ---------------------------- */

$(document).ready(function() 
{
  /*
     ==================== 
       Page Effect
     ====================
  */


   // $("#container").effect("bounce", { times:3 }, 300);


  /*
     ==================== 
       Navigation Effect
     ====================
  */

  // mouseover effect for the navigation
  $("a.navi").mouseover(function() 
  {
   $(this).find("img").attr("src", $(this).find("img").attr("src").replace("0", "1"));
  });

  // mouseout effect for the navigation
  $("a.navi").mouseout(function() 
  {
   $(this).find("img").attr("src", $(this).find("img").attr("src").replace("1", "0"));
  });

  /*
  // mouseover effect for the navigation
  $("a.navi").click(function() 
  {
   $(this).attr("href","www.loewenbiergarten.de");
   $("#lionContent").text("laden ...");
  });
*/


});
