function blogFeed(){var feeddiv;var feedparam;this.setUpblogFeed=function(str,param){feeddiv=str;feedparam=param;var blogURL="/nikeos/p/usnikefootball/en_US/feed_homepage?tag="+feedparam;$.ajax({url:blogURL,success:function(data,textStatus,XMLHttpRequest){$("#hidden_data_module").html(data);if($("#hidden_data_module").children(".post").length>0){if($("#hidden_data_module").children(".post").length>1){$("#"+feeddiv).append('<div class="left_arrow"></div>')}for(i=0;i<($("#hidden_data_module").children(".post").length);i++){var url=$($("#hidden_data_module").children(".post")[i]).children("a").attr("href");var desc=$($("#hidden_data_module").children(".post")[i]).children(".post-text").children("p").text();var title=$($("#hidden_data_module").children(".post")[i]).children(".post-text").children("h2").children("a").text();var created_at=$($("#hidden_data_module").children(".post")[i]).children(".post-text").children(".post-info").text();var arr=created_at.split(" ");var day=arr[1];var month=arr[2];var temptime=arr[4];var timearr=temptime.split(":");var hour=timearr[0];var min=timearr[1];var am_pm="AM";switch(hour){case"00":hour="8";am_pm="PM";break;case"01":hour="9";am_pm="PM";break;case"02":hour="10";am_pm="PM";break;case"03":hour="11";am_pm="PM";break;case"04":hour="12";am_pm="AM";break;case"05":hour="1";am_pm="AM";break;case"06":hour="2";am_pm="AM";break;case"07":hour="3";am_pm="AM";break;case"08":hour="4";am_pm="AM";break;case"09":hour="5";am_pm="AM";break;case"10":hour="6";am_pm="AM";break;case"11":hour="7";am_pm="AM";break;case"12":hour="8";am_pm="AM";break;case"13":hour="9";am_pm="AM";break;case"14":hour="10";am_pm="AM";break;case"15":hour="11";am_pm="AM";break;case"16":hour="12";am_pm="AM";break;case"17":hour="1";am_pm="PM";break;case"18":hour="2";am_pm="PM";break;case"19":hour="3";am_pm="pM";break;case"20":hour="4";am_pm="PM";break;case"21":hour="5";am_pm="PM";break;case"22":hour="6";am_pm="PM";break;case"23":hour="7";am_pm="PM";break;case"24":hour="8";am_pm="PM";break}created_at=month+" "+day+" AT "+hour+":"+min+" "+am_pm;var len=$($("#hidden_data_module").children(".post")[i]).children("a").length;if(len>1){var imgsrc=$($($("#hidden_data_module").children(".post")[i]).children("a")[0]).children("img").attr("src")}else{var imgsrc=$($($("#hidden_data_module").children(".post")[i]).children("a")[1]).children("img").attr("src")}var html='<div class="blog">';html+="<div class='img' id='blog"+i+"_image' style=\"background:url('"+imgsrc+"') no-repeat 0 0\">";html+="</div>";html+='<div class="title">';html+="<a class='customfont' onClick=\"tracking.trackClick({pageName:'home>p7>blog>readmore',prop18:'home'});\" href='"+url+"/'>"+title+"</a>";html+="</div>";html+='<div class="content">';html+=truncate(desc,165);html+="&nbsp; <a onClick=\"tracking.trackClick({pageName:'home>p7>blog>readmore',prop18:'home'});\" href=\""+url+'" class="readmore">read more</a></div>';html+='<div class="created_at">'+created_at+"</div>";$("#"+feeddiv).append(html)}if($("#hidden_data_module").children(".post").length>1){$("#"+feeddiv).append('<div class="right_arrow"></div>')}$("#"+feeddiv).children(".blog").each(function(){$(this).hide()});$("#"+feeddiv).children(".blog:first").show();setup_arrows(feeddiv,"blog")}}})}};
