$(document).ready(function() {


$("a").bind("focus", function () {$(this).blur();});


$("li.menuhead").mouseover(function () {$("ul", this).show(); $("ul>li>a:last", this).css("border-bottom", "1px solid #525252");});
$("li.menuhead").mouseout(function () {$("ul", this).hide();});

$("#a-ukr").mouseover(function () { 
$("#ukr").attr("title", $("#ukr").attr("src"));
$("#ukr").attr("src", "images/ukr3.jpg");});
$("#a-ukr").mouseout(function () { $("#ukr").attr("src", $("#ukr").attr("title"));});

$("#a-ru").mouseover(function () { 
$("#ru").attr("title", $("#ru").attr("src"));
$("#ru").attr("src", "images/ru3.jpg");});
$("#a-ru").mouseout(function () { $("#ru").attr("src", $("#ru").attr("title"));});

$("#a-eng").mouseover(function () { 
$("#eng").attr("title", $("#eng").attr("src"));
$("#eng").attr("src", "images/eng3.jpg");});
$("#a-eng").mouseout(function () { $("#eng").attr("src", $("#eng").attr("title"));});

$("a[rel^='lightbox']").slimbox({/* Put custom options here */}, null, 
      function(el) {
        return (this == el) || ((this.rel.length > 8) && (this.rel == el.rel));
      }
    );
});
