$(function() {
	$('#wrap-np').html("<ul id=\"np\"><li><a href=\"#\" id=\"previous\" title=\"previous\"></a></li><li><a href=\"#\" id=\"next\" title=\"next\"></a></li></ul>");
	$('#wrap-dots').html("<ul id=\"dots\"><li></li></ul>");
	//featured
    $('#articles').cycle({
        fx:      'fade',
        timeout:  8000,
        prev:    '#previous',
        next:    '#next',
        pager:   '#dots',
        pagerAnchorBuilder: pagerFactory
    });
    //featured tabs
    function pagerFactory(idx, slide) {
        var s = idx > 5 ? ' style="display:block"' : '';
        return '<li'+s+'><a href="#" title="article '+(idx+1)+'"></a></li>';
    };
    // funded sports tab level 1
	$("ul.funded_sports a").click(function(){
		$("ul.funded_sports a").removeClass("hi");
		$(this).addClass("hi");
		$("#fs_content").html("<p>Loading sports ...</p>").load($(this).attr("href"));
		return false;
	});
	// funded sports tab level 2
	$("#fs_content a.fs_select").live("click",function(){
		// love you IE7..
			str = $(this).attr("href").split('#');
			str = '#' + str[1];
		$("#fs_content a.fs_select").removeClass("hi");
		$(this).addClass("hi");
		$("#fs_content div.fs_detail").hide();
		$(str).show();
		return false;
	});
	

});
