$(document).ready(
	function(){
		$('a.toolbaropen').next().find("a.last").css("border-right", "1px solid ##C0C4C6");
		// hide the top toolbar
		$('div.toolstop a.toolbaropen').next().hide();

		var hide = false;
		var openToolbar = $('div.toolsbot a.toolbaropen').next();
		
		$('div.toolstop').hover(function() {
			if (hide) {
				clearTimeout(hide);
			}
			else {
				$(this).children(".toolbar").animate({width:'toggle'},"slow");
			}
			return false; 
		},
		function() {
			openToolbar = $(this);
			hide = setTimeout(function() {
				openToolbar.children(".toolbar").animate({width:'toggle'},"slow");
			}, 250);
			return false; 
		});
	});

