$(function(){

    $(".top-menu-container ul li").hover(function(){
        $(this).addClass("hover");
        $('ul:first',this).css('display', 'block');
    }, function(){
        $(this).removeClass("hover");
        $('ul:first',this).css('display', 'none');
    });
    $(".top-menu-container ul li ul li:has(ul)").find("a:first").append(" &raquo; ");

	$(".main-menu-container ul li").hover(function(){
        $(this).addClass("hover");
        $('ul:first',this).css('display', 'block');
    }, function(){
        $(this).removeClass("hover");
        $('ul:first',this).css('display', 'none');
    });
    $(".main-menu-container ul li ul li:has(ul)").find("a:first").append(" &raquo; ");
	
	
});
