jQuery(document).ready(function() {
	jQuery('#secondaryContent ul li ul li a:not(.widget_twitter a)').hover(function() { //mouse in
		jQuery(this).stop().animate({ paddingLeft: '10px' }, 400);
	}, function() { //mouse out
		jQuery(this).stop().animate({ paddingLeft: 0 }, 400);
	});

jQuery('#smButtons li').removeClass('highlight').find('a').append('<span class="hover" />').each(function () {
	var $spanButton = jQuery('> span.hover', this).css('opacity', 0);
	jQuery(this).hover(function () {
	    $spanButton.stop().fadeTo(500, 1);
	}, function () {
		$spanButton.stop().fadeTo(500, 0);
	});
});	

});

