$(document).ready(
	function()
	{
		$('.toolbar a').mouseover(function() {
			var box = $(this).parent().parent();
			box.attr('bg', box.css('background-color'));
			box.css('background-color', '#dddddd');
		});

		$('.toolbar a').mouseout(function() {
			var box = $(this).parent().parent();
			box.css('background-color', box.attr('bg'));
		});
	}
);