/*-------------------------------------------------
	Behaviors for the Shows > Videos tab
		- requires the jQuery library 
-------------------------------------------------*/

jQuery(document).ready(function() {
	//This just applies the active class to the th.episode if we are sorting by season
	//(season and episode sorting are intrinsically linked, we are just showing visually that episode falls into this sort)
	if ( jQuery('.VIDEO_TABLE th.season .active').length > 0 ){
		jQuery('.VIDEO_TABLE th.season,.VIDEO_TABLE th.episode').addClass('active');
	}

});//closes ready function
