/*
author : frashid
*/


function GetNewFeatured(){

	var pagesize = 10;
	var callback = "renderNewFeatured";
	var newFeaturedVidJSON = new BreakJSON();
	newFeaturedVidJSON.sendBegin("http://websvc.break.com/cms/Handlers/PremiumVideo/PremiumVideoHandler.ashx?invoke=getpremiumvideos&numResults=" + 		pagesize, callback);
}

function renderNewFeatured (jsonData)
{
	var html = "";
	if (jsonData != null && jsonData.premiumvideos.length > 0)
	{
		for (var i = 0 ; i < jsonData.premiumvideos.length; i++)
		{
			if (jsonData.premiumvideos[i].ContentName.length > 38)
				jsonData.premiumvideos[i].ContentName = jsonData.premiumvideos[i].ContentName.substring(0,38) + "...";
			if (jsonData.premiumvideos[i].ContentDescription.length > 139)
				jsonData.premiumvideos[i].ContentDescription = jsonData.premiumvideos[i].ContentDescription.substring(0,139) + "...";
				
			html += '<div class="feat-item">';
			html += '	<h2 class="featvid-rgt">';
			html += '		<a href="'+jsonData.premiumvideos[i].ContentURL+'" target="_top">'+jsonData.premiumvideos[i].ContentName+'</a>';
			html += '	</h2>';
			html += '	<div class="featvid-rgt-thumb">';
			html += '		<a href="'+jsonData.premiumvideos[i].ContentURL+'" target="_top">';
			html += '			<img src="'+jsonData.premiumvideos[i].ThumbnailURL+'" width="75" height ="56" border = "0" class="thumb"/>';
			html += '		</a>';
			html += '	</div>'
			html += '	<div class="featvid-rgt-desc">'+jsonData.premiumvideos[i].ContentDescription+'</div>';
			html += '	<div class="clear">&nbsp;</div>';
			html += '</div>';
		}
		
		 document.getElementById ("featured-videos-rgt" ).innerHTML = "";
		 document.getElementById ("featured-videos-rgt" ).innerHTML = html;
	}

}

/*
		<div class="feat-item">
                  <h2 class="featvid-rgt">
                    <a href="#" target="_top">Woman Survives Vicious Bear Attack</a>
                  </h2>
                  <div class="featvid-rgt-thumb">
                    <a href="#" target="_top">
                     <img src="http://media1.break.com/dnet/media/2009/1/648293_27d7a0c9-5a4c-41d2-86db-c787c9e6c7db_prod_1_0001_thumb.jpg" width="75" height="56" border="0" class="thumb" />
                    </a>
                  </div>
                  <div class="featvid-rgt-desc">A lady learns to respect the fact that domesticated bears are still wild animals and can be very dangerous.</div>
				<div class="clear">&nbsp;</div>
        </div>
		*/