

$(document).ready(function(){
	// adding arrows to all 'Learn More' links
	$('.learn-more').each(function(){
		$(this).html($(this).html()+' &raquo;');
	});
	
	// adding the background
	$('#container script').remove();
	$('#container').wrap('<div class="background" />');
	$('.background').css('background','url(/kylintv/marketing/images/page-bg.png) transparent center top no-repeat');
	
	// home page of kylin has different background positioning
	if(document.location.href.indexOf('/home',0)>0){
		$('.background').css('background-position','center 400px');
	}
	
});
