2011-06-08 19:57:35 +00:00
|
|
|
/* $This file is distributed under the terms of the license in /doc/license.txt$ */
|
|
|
|
|
|
|
|
$(function(){
|
|
|
|
|
2011-06-08 20:55:53 +00:00
|
|
|
$("ul.dropdown li").hover(function(){
|
2011-06-08 19:57:35 +00:00
|
|
|
$(this).addClass("hover");
|
|
|
|
$('ul:first',this).css('visibility', 'visible');
|
2011-06-08 20:55:53 +00:00
|
|
|
if ( $('ul.dropdown').width() > 88 ) {
|
|
|
|
$('ul:first li',this).css('width', ($("ul.dropdown").width() - 22) + 'px');
|
|
|
|
}
|
|
|
|
$("ul.dropdown ul.sub_menu li:last-child").css('width', ($("ul.dropdown").width() - 14) + 'px');
|
2011-06-08 19:57:35 +00:00
|
|
|
|
|
|
|
}, function(){
|
|
|
|
|
|
|
|
$(this).removeClass("hover");
|
|
|
|
$('ul:first',this).css('visibility', 'hidden');
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
$("ul.dropdown li ul li:has(ul)").find("a:first").append(" » ");
|
|
|
|
|
|
|
|
});
|