$(document).ready(function(){
	$('.txtbox p').hide();
	$('.txtbox').hover(
		function() {
			$(this).find('p').fadeIn()
		},function() {
			$(this).find('p').fadeOut()
		}
	);
	
	
if($.browser.msie){
		$("#user_toolbar ul li a ").each(function(){
			$(this).hover(
				function(){
		     		$(this).stop().animate({ 
		        		width: "160px" 
		      		}, 100 );      		
				},
				function(){
		     		$(this).stop().animate({ 
		        		width: "120px"		        		
		      		}, 100 );
				});	 
			});

	
	
	}else{

		$("#user_toolbar ul li a span.spacer").each(function(){
			$(this).hover(
				function(){
		     		$(this).stop().animate({ 
		        		paddingTop: "1.5em",
		        		paddingRight: "2em" ,
		        		paddingBottom:  "1em",
		        		paddingLeft: "2em" ,
		        		marginTop: "-.5em"
		      		}, 100 );      		
				},
				function(){
		     		$(this).stop().animate({ 
		        		paddingTop: "1em",
		        		paddingRight: "1.5em" ,
		        		paddingBottom:  ".5em",
		        		paddingLeft: "1.5em" ,
		        		marginTop: "0"
		      		}, 100 );
				});	 
			});
	}	
}); 