// Init tc_about_the_show_custom
// Pre-DOM: Load Global resource files/libraries that are NOT dependent on the DOM being ready
// Load js
init.preload.js('lib/zeroclipboard.js');
init.preload.js('lib/jquery/plugin/jquery.validate.js');
init.preload.js('app/article.js');
init.preload.js('app/VideoPlayerWidget.js');
init.preload.js('app/pollUtil.js');
init.preload.js('app/poll.js');
init.preload.js('app/playlist.js');

// Load css
init.preload.css('series.css');
if (browser.msie7) {
	init.preload.css('ie7.css');
} else if (browser.msie6) {
	init.preload.css('ie6.css');
	init.preload.js('lib/supersleight.js'); // IE 6 only
}

// Post-DOM: Load all js files/libraries that ARE dependent on the DOM being ready
function moduleReady() { // include items here that are not Global

	var $ = jQuery;
	
	shareSubject = $("h2.show-article").text();
	
	var shareForm = $('#article-share');
	shareForm.find('#share-subject').val($("h2.show-article").text());
	
}

