/**
  * HDDigital
  * THP MAIN UI
*/
var MainUI =
{	
	Init:function()
	{
		$(document).ready(function(){

			$(".rounded-img, .rounded-games, .rounded-img2, .rounded-tuntucb, .rounded-video").load(function() {
			$(this).wrap(function(){
				return '<span class="' + $(this).attr('class') + '" style="background:url(' + $(this).attr('src') + ') no-repeat center center; width: ' + $(this).width() + 'px; height: ' + $(this).height() + 'px;" />';
			});
			$(this).css("opacity","0");
			});
	
		});
	}
	
}

