jQuery(document).ready(function(){ // When the Document is Ready...
	
	var slider = '#bardrop'; // Name of the Slider Panel
	var hover = 'hover'; // Name of the Hover Class
	
	
// ------------------ Start Actions --------------------------//

	$('#bar h6').click(function(){ // Active slider when Clicked
		$('#bardrop').slideToggle(250);
	});
	$(slider).hover(function() {
		// Do Nothing cause panel is Down!
	}, function(){	
		$(this).slideUp(250); // Mouse out will trigger the slider to roll up...
	});
	
	$(slider && ' div table tr').hover(function(){
		$(this).addClass(hover);
	}, function(){
		$(this).removeClass(hover);
	});
	
});