

// ---------------------------------
// ---------------------------------
// Fade Navigation Buttons to Glow
	
	var currentObj;
    $(function () {
        // find the div.fade elements and hook the hover event
        $('div.nav_fade').hover(function() {
										 
            // on hovering over find the element we want to fade *up*
            var nav_fade = $('> div', this);
            var dd_fade = $('> ul', this);
           	
			// Only Allow the Current Nav Item to Fade up
			if(currentObj != nav_fade){
				nav_fade.fadeIn(500);
				dd_fade.fadeIn(700);
				var currentObj = $('> div', this);
				
				// Animate Drop Down Down
				dd_fade.animate({
				  top: "105px", opacity: 1
				}, { duration: 500, queue: false });

			}
            
        }, function () {
            var nav_fade = $('> div', this);
            var dd_fade = $('> ul', this);
			
			nav_fade.fadeOut(200); 
			
			// Animate Drop Down Down
			dd_fade.animate({
				top: "87px", opacity: 0
			}, { duration: 700, queue: false });

			
        });
    });



