~launchpad-pqm/launchpad/devel

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// JavaScript Document

var dropDownTimeOut = 0;

dropDownBg = new Image(); 
dropDownBg.src="images/bg-dropdown.png"; 

$(document).ready(function(){
	initDropDown();
});

function initDropDown() {
	$("#navigation-drop-down").mouseover(function(){
      dropDownIn();
    })
	$("#navigation-drop-down").mouseout(function(){
      dropDownOut();
    })	
}

function dropDownOut() {
	dropDownTimeOut = setTimeout('$("#navigation-drop-down").removeClass("menu");', 400);
}

function dropDownIn() {
	clearTimeout(dropDownTimeOut);
	$("#navigation-drop-down").addClass("menu");
}