﻿$(document).ready(function () { if ($(".footer").has("#copyright").size() == 0) { $(".footer").append(' <a id="copyright" href="http://wwww.zhiarsystem.com">  <img class="left" src="images/copyrighted-to-zhiarsystem.jpg" alt="zhiarsystem" /></a>') } $(".verticalBar").each(function () { $(this).click(function (e) { e.preventDefault(); $(".activeBar").stop().animate({ left: "0px" }, 1000); var pos = $("#container").position(); var leftActual = $(this).offset(); $(this).addClass("activeBar"); var minus = 2; if ($.browser.msie) { if ($.browser.version < 9) { minus = 0 } if ($.browser.version >= 9) { minus = 274 } else { minus = -2 } } $(".activeBar").animate({ left: leftActual.left - pos.left - minus, top: 0 }).removeClass("activeBar").addClass("right"); $(this).removeClass("right").animate({ left: 0, top: 0 }, "normal", function () { var contentID = $(this).attr("id"); contentID = contentID.substring(1); $("#contentbody").hide(); $("#contentbody").html($("#" + contentID).html()).slideDown("slow") }).addClass("activeBar") }); $(this).hover(function () { $(this).find(".mnubar").animate({ height: "350px", width: "45px" }, "slow") }, function () { $(this).find(".mnubar").stop().animate({ height: "45px", width: "45px" }, "slow") }) }) });
