$(function(){
	
	$('#sidebar ul li').bind('mouseover', function(){
		if ($('a', this).is('.current') != true ){	
			//$('a img', this).animate({width: "72px", height: "72px"}, 'fast');
			$('> ul', this).addClass('visible');
		}
	});
	
	$('#sidebar ul li').bind('mouseout', function(){
		if ($('a', this).is('.current') != true ){
			//$('a img', this).animate({width: "54px", height: "54px"}, 'fast');
			$('> ul', this).removeClass('visible');
		}
	});
	
});
