/*
 * jQuery JavaScript Library v1.3.2
 * http://jquery.com/
 *
 * Copyright (c) 2009 John Resig
 * Dual licensed under the MIT and GPL licenses.
 * http://docs.jquery.com/License
 *
 * Date: 2009-02-19 17:34:21 -0500 (Thu, 19 Feb 2009)
 * Revision: 6246
 */
 
jQuery(document).ready(function(){
	
	$("#iconbar  .base").hover(
		function(){
			$(this).animate({opacity: "hide"}, "slow");
			$(this).next().animate({opacity: "show"}, "slow");
			
			$(this).parent().parent().animate({ width: "140px" }, {queue:false, duration:"normal"} );
			$(this).parent().parent().find("span").animate({opacity: "show"}, "fast");
		}, 
		function(){
			
		}
	);
	$("#iconbar  .hover").hover(
		function(){
			
		}, 
		function(){
			$(this).animate({opacity: "hide"}, "slow");
			$(this).prev().animate({opacity: "show"}, "slow");
			
			$(this).parent().parent().animate({ width: "30px" }, {queue:false, duration:"normal"} );
			$(this).parent().parent().find("span").animate({opacity: "hide"}, "fast");
		}
	);
});
