$(function(){

    $("ul.dropdown li").hover(function(){
    
        $(this).addClass("hover");
	//$(this).children("ul").children("li").addClass("hover");
        $('ul:first',this).css('visibility', 'visible');
	$(this).siblings("li").children("ul").css('visibility', 'hidden');
	$.cookie('selected_drop', $(this).attr("id"));
    
    }, function(){
    
       // $(this).removeClass("hover");
	//$(this, 'li').children("ul").css('padding-top', '20px');
        //$('ul:first',this).css('visibility', 'hidden');
    
    });
    
   $("ul.dropdown li ul li").hover(function(){
    
        $(this).addClass("hover");	
    
    }, function(){
            $(this).removeClass("hover");    
    });	


    $("ul.dropdown li ul li:has(ul)").find("a:first").append(" &raquo; ");

});