//dropdown menu code
if (navigator.appName == 'Netscape') {
    document.captureEvents(Event.MOUSEMOVE);
    document.onmousemove = netscapeMouseMove;
}
function netscapeMouseMove(e) {
        mousex = e.pageX;
        mousey = e.pageY;
		dleft = 38;
		dright = 183;
		dtop = 80;
		dbottom = 209;
}
function MouseMove() {
if(navigator.appName.indexOf("Microsoft") != -1){
        mousex = window.event.x;
        mousey = window.event.y;
		//ie uses the top of the browser not the page
		dleft = 38 - document.body.scrollLeft;
		dright = 183 - document.body.scrollLeft;
		dtop = 80 - document.body.scrollTop;
		dbottom = 209 - document.body.scrollTop;
}
}
function fadeit(){
if(navigator.appName.indexOf("Microsoft") != -1){
dropdown.filters.alpha.opacity+=8;
if(dropdown.filters.alpha.opacity < 100){
setTimeout('fadeit()', 1);
}
}
}
var checking = 0;
function checkpos(){
if (mousex < dleft || mousey < dtop || mousex > dright || mousey > dbottom){
//if (mousex < 31 || mousey < 80 || mousex > 176 || mousey > 189){
//alert("top="+dbottom+" mousey="+mousey);
if(navigator.appName.indexOf("Microsoft") != -1){
dropdown.filters.alpha.opacity=0;
}
hide('dropdown');
checking = 0;
clearTimeout();

}
else{
checktrigger('0');
}
}
function checktrigger(val){
if (val == 0){
setTimeout('checkpos()', 100);
}
if (val == 1 && (checking == 0)){
checking = 1;
setTimeout('checkpos()', 100);
}
}
function shout(){
//alert("hello");
off('services')
checktrigger('1')
}
//end