/**
 * project: clstudio.com.sg
 * filename: compressed_index_scripts.js
 *
 * @author jeffrey tan (jeffrey_design@yahoo.com)
 * @version 1.0 on aug 2008
 * @copyright jeffrey tan. all rights reserved.
 */

function index_content_init(){
	$.get("updates_summary.html",{},function(updates_data){$("#latestUpdates").append(updates_data).find("ul").newsTicker();});
	var randNum = (Math.floor(Math.random()*3))+1;var accolades_summary="accolades_summary_"+randNum+".html";$.get(accolades_summary,{},function(accolades_data){$("#ajaxAccolades").append(accolades_data).find("ul").newsTicker();});
	var randNum = (Math.floor(Math.random()*3))+1;var faq_summary="faq_summary_"+randNum+".html";$.get(faq_summary,{},function(faq_data){$("#ajaxFaq").append(faq_data).find("ul").newsTicker();});
	$.get("affiliates_summary.html",{},function(affiliate_data){$("#ajaxAffiliate").append(affiliate_data).find("ul").newsTicker();});
}
YAHOO.util.Event.addListener(window, "load", index_content_init);