﻿ function getAjaxNews(){   
    $.ajax({url: "news.ashx", success: 
        function(data){
           $("#tabsContent").html(data);
           $("#tabsContent ul").innerfade({
				speed: 1000,
				timeout: 5000,
				type: 'sequence',
				containerheight: '45px'
			});           
        }
    });
}    

