jQuery(function(){
	jQuery("a.more").hover(function () {
			jQuery(this).stop().animate({
				'padding-right' : '10px'
				}, 200 );
		    }, function () {
			jQuery(this).stop().animate({
				'padding-right' : '0px'
				}, 200 )
		    });
			
	jQuery(".news-list ul li").hover(function () {
			jQuery(this).stop().animate({
				'padding-right' : '16px'
				}, 200 );
		    }, function () {
			jQuery(this).stop().animate({
				'padding-right' : '12px'
				}, 200 )
		    });		
			
	jQuery(".sidebar-box ul.children a").hover(function () {
			jQuery(this).stop().animate({
				'padding-right' : '16px'
				}, 200 );
		    }, function () {
			jQuery(this).stop().animate({
				'padding-right' : '0px'
				}, 200 )
		    });	
			
	jQuery("a.ico-google, a.ico-net, a.ico-opera, a.ico-safari, a.ico-net, a.ico-explorer, a.ico-firefox").hover(function () {
			jQuery(this).stop().animate({
				'margin-top' : '-4px'
				}, 200 );
		    }, function () {
			jQuery(this).stop().animate({
				'margin-top' : '0px'
				}, 100 )
		    });		
			
});
