$(document).ready(function() {
  /** Sitemap toggle **/
  $('#Footer').find('.FooterContent').hide().end().find('.toggle').click(function() {
    $(this).next().slideToggle();
  });
});

$(document).ready(function() {
  /** Sitemap toggle **/
  $('#OnyaContainer').find('#OnyaContent').show().end().find('.OnyaToggle').click(function() {
    $(this).next().slideToggle();
  });
});


/** Tooltip script http://www.chrisjhill.co.uk/Articles/jQuery_tooltip **/
 
$(document).ready(function() {
    $(".tooltip").hover(function() {
        if ($(".hover", this).css("display") == "block") { return false; }
        os = $(this).offset();
        $(".hover", this).css({top: "50px", left: "92px"}).animate({top: "0px", opacity: "show"}, 1100);
    },
    function() {
        os = $(this).offset();
        $(".hover", this).animate({top: "40px", opacity: "hide"}, 500);
    });
});



