var abl = function(){
    this.blur();
};
var ablur = function(){
    $("a").focus(abl);
};
var tohome = function(){
    location.href = "/";
};
var goAtt = function(){
    location.href = $(this).find("a").attr("href");
}
var custom_start = function(){
    $(function(){
        if (jQuery.browser.msie) {
            try {
                document.execCommand(
                "BackgroundImageCache",
                false, 
                true);
            } catch(err){}
        }
    });
};
$(document).ready(
    function(){
        custom_start();
        $("#flash").show();
        $("a").focus(abl);
        $("#top h1").click(tohome);
        $("#mail a").attr("href", "mail"+"to"+":"+"info"+"@"+"olympicexpo"+"."+"ru");
        $("#menu2 ul li").css({cursor:"pointer"}).click(goAtt);
    }
); 

