$(document).ready(function() {

      $('img.icon').mouseover(function(){					
		$(this).animate({ 
        width: "58px"
		}, 500 );						
		}); 

      $('img.icon').mouseout(function(){					
		$(this).animate({ 
        width: "48px"
		}, 500 );					
		}); 

	
	var newsoption1 = {
		firstname: 'mynews',
		secondname: 'showhere',
		thirdname:'news_display',
		fourthname:'news_button',
		newsspeed:'6000',
		effectis:'1'
	}
	$.init_news(newsoption1);

	var myoffset=$('#news_button').offset();
	var mytop=myoffset.top-1;
	$('#news_button').css({top:mytop});

});
