$("document").ready(function() {
    if ( !$.browser.msie ) {
        $('#flags a').fadeTo(1,0.7);
    
  
    $('#flags a').hover(
        function(){
            $(this).stop(true,true).fadeTo("normal",1);
        },
        function(){
            $(this).stop(true,true).fadeTo("normal",0.7);
        }
        );

    }
    var content_height = $('#content').height();
    $('#paper_mid').css('height', content_height - 260 + "px");

    $("ul#top_menu li").hover(
        function(){
            $("ul", this).slideDown("fast").show();
            $("a.main", this).addClass("hov"); },
        function(){
            $("ul", this).stop(true, true).slideDown();
            $("ul", this).hide();
            $("a.main", this).removeClass("hov");
        }
    );

    $('div.event_mid a:odd').css('background', "#eee");

});

$(function() {
    $('#gallery_image_list a').lightBox();
});
