$(".oLink").live({
	mouseenter:
		function(){
			$(this).css('text-decoration','none');
		},
	mouseleave:
		function(){
			$(this).css('text-decoration','underline');
		}
});
