$(document).ready(
	function() {
		$('#toolbar li').hover(
		function() {
			$('.tooltip-hover').addClass('old');
			$(this).find('.tooltip-hover').remove();
			$(this).append($('<div class="tooltip-hover new"><span>' + $(this).find('img').attr('title') + '</span></div>'));
			$('.tooltip-hover.new').animate({'height' : '20px'}, {complete : function() { $('.tooltip-hover.new span').fadeIn('fast'); }});
		},
		function() {
			$(this).find('.tooltip-hover').removeClass('new');
			$('.tooltip-hover:not(.new) span').fadeOut('fast',
				function() {
					$('.tooltip-hover:not(.new)').animate({'height' : '0px' }, {complete : function() { $('.tooltip-hover:not(.new)').remove(); }});
				});
		}
		);
		
		$('#email').focus(
			function() {
				if ($(this).hasClass('uninit')) { $(this).removeClass('uninit'); $(this).val(''); }
			});
		$('#email').blur(
			function() {
				if ($(this).val() == '') { $(this).addClass('uninit'); $(this).val('enter your email address'); }
			});
	});

