$(function(){

    $("ul.dropdown li").hover(function(){
    
        $(this).addClass("hover");
        $('ul:first',this).css('visibility', 'visible');
    
    }, function(){
    
        $(this).removeClass("hover");
        $('ul:first',this).css('visibility', 'hidden');
    
    });
    
    $("ul.dropdown li ul li:has(ul)").find("a:first").append(" &raquo; ");

    $("#fyz_dep").hover(function() {
        $(this).css("background", "#f3f276");
    }, function() {
        $(this).css("background", "#f6f6f6");
    });

    $("#geo_dep").hover(function() {
        $(this).css("background", "#76cbf3");
    }, function() {
        $(this).css("background", "#f6f6f6");
    });

    $("#lpl_dep").hover(function() {
        $(this).css("background", "#70e787");
    }, function() {
        $(this).css("background", "#f6f6f6");
    });

    $("#tax_dep").hover(function() {
        $(this).css("background", "#b3e770");
    }, function() {
        $(this).css("background", "#f6f6f6");
    });

    $("#ekt_dep").hover(function() {
        $(this).css("background", "#cecece");
    }, function() {
        $(this).css("background", "#f6f6f6");
    });

});
