$(document).ready(function() {

   var browser = navigator.appName;
   if(browser == "Microsoft Internet Explorer") {
     $("#css").attr("href", "include/style_ie.css");
   }
   
   $("#uvod").hover(function() {
   var popis = $("#uvod").attr("title");
     $("#hover").css("display", "none");
     $("#hover").html(popis);
     $("#hover").fadeIn("slow");
   }, function() {
     $("#hover").fadeOut("slow");
   });
   
   $("#fotky").hover(function() {
   var popis = $("#fotky").attr("title");
     $("#hover").css("display", "none");
     $("#hover").html(popis);
     $("#hover").fadeIn("slow");
   }, function() {
     $("#hover").fadeOut("slow");
   });
   
   $("#partylist").hover(function() {
   var popis = $("#partylist").attr("title");
     $("#hover").css("display", "none");
     $("#hover").html(popis);
     $("#hover").fadeIn("slow");
   }, function() {
     $("#hover").fadeOut("slow");
   });
   
   $("#download").hover(function() {
   var popis = $("#download").attr("title");
     $("#hover").css("display", "none");
     $("#hover").html(popis);
     $("#hover").fadeIn("slow");
   }, function() {
     $("#hover").fadeOut("slow");
   });
   
   $("#booking").hover(function() {
   var popis = $("#booking").attr("title");
     $("#hover").css("display", "none");
     $("#hover").html(popis);
     $("#hover").fadeIn("slow");
   }, function() {
     $("#hover").fadeOut("slow");
   });
   
   $("#shop").hover(function() {
   var popis = $("#shop").attr("title");
     $("#hover").css("display", "none");
     $("#hover").html(popis);
     $("#hover").fadeIn("slow");
   }, function() {
     $("#hover").fadeOut("slow");
   });
   
   $("#forum").hover(function() {
   var popis = $("#forum").attr("title");
     $("#hover").css("display", "none");
     $("#hover").html(popis);
     $("#hover").fadeIn("slow");
   }, function() {
     $("#hover").fadeOut("slow");
   });
   
   $("#kontakt").hover(function() {
   var popis = $("#kontakt").attr("title");
     $("#hover").css("display", "none");
     $("#hover").html(popis);
     $("#hover").fadeIn("slow");
   }, function() {
     $("#hover").fadeOut("slow");
   });
   
   $("#edit_right_add_show").click(function() {
     $("#edit_right_add").slideDown("slow");
   });
});
