// JavaScript Document
jQuery(document).ready(function() {	
	var eventTimeout = null;
	
	var enterEvent = function() { 
		eventTimeout = window.setTimeout(function() {
			eventTimeout = null;
			jQuery(".destination_bar").animate( { top:"0px", opacity:0.8 }, 500, function() {
				jQuery(".d_bar_tab").attr({src: "fileadmin/templates/global/img/toolbar/d_bar_tab_close.gif"}); 																		  
			});
		}, 250);
	};
	
	var leaveEvent = function() { 
	
		if (eventTimeout) {
			window.clearTimeout(eventTimeout);
			eventTimeout = null;
		}
	
		jQuery(".destination_bar").animate( { top:"-75px", opacity:1  }, 500, function() {
			jQuery(".d_bar_tab").attr({src: "fileadmin/templates/global/img/toolbar/d_bar_tab_open.gif"}); 															 
		}); 
	};
	
	jQuery(".d_bar_nav .d_bar_tab").mouseenter(enterEvent);
	jQuery(".destination_bar").mouseleave(leaveEvent);
});


