////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////
var totalFashionNewsNum = 0;
function setLifeStyleNews(myTitle, myDesc, myLink, myImg, myDate, newFlag) {
	//alert(myTitle);
	var myList = $('div#myVitaminReccomnd>div#newReccomend>ol>li:eq(' + totalFashionNewsNum + ')>a');
	myList.attr('href', myLink);
	myList.children('span:eq(0)').text(myDate);
	myList.children('span:eq(1)').text(myTitle);
	myList.children('span:eq(2)').text(myDesc);
	myList.children('img').attr('src', myImg);
	if(newFlag == 1){
		myList.children('span:eq(0)').attr('class','date new');
	};
	totalFashionNewsNum += 1;
	if(totalFashionNewsNum >= 4){
		var mainFashionNews = $('div#myVitaminReccomnd>div#newReccomend>ol');
		mainFashionNews.removeClass('hiding');
		//mainFashionNews.children('ol').fadeIn(1200);
	};
};
