﻿$(function(){
    $(".menu > ul > li").hover(function(){
        $(".menu > ul > li").children("ul").hide();
        $(this).css("background","#bf916b");
//        $(this).children("ul").slideDown("slow");      
$(this).children("ul").show();   
        $(this).children("ul").children("li:even").css("background","url(images/menu_01.png)");
        $(this).children("ul").children("li:even").hover(function(){$(this).css("background","url(images/menu_03.png)"); $(this).find("a").css("font-weight","bold").css("color","#ead6bd");},function(){$(this).css("background","url(images/menu_01.png)");$(this).find("a").css("font-weight","100").css("color","#012d5c");});
        $(this).children("ul").children("li:odd").css("background","url(images/menu_02.png)");
        $(this).children("ul").children("li:odd").hover(function(){$(this).css("background","url(images/menu_04.png)");$(this).find("a").css("font-weight","bold").css("color","#ead6bd");},function(){$(this).css("background","url(images/menu_02.png)");$(this).find("a").css("font-weight","100").css("color","#012d5c");});
    },function(){
         $(this).css("background","#565656");
         $(".menu > ul > li").children("ul").hide();
    });
    
    $(".baritem > a ").click(function(){
        $(".baritem").nextAll(".subitem").hide();
        $(this).parent().next(".subitem").show();    
    });
    
 

});


