﻿//Javascript
$j(document).ready(function(){

	var VideoCategoryEdit = setInterval
	    (
	    /*-create an anonymous function to run the code */
	    function() {
	    /*-check if the function '$' exists (since we need to use it) and that
	    the container has been loaded (second condition) */
	    
		    if(typeof $!='undefined' && $('ka_mainContainer') && $('topCategory'))
		    {  		
				
				$('topCategory').options[2].selected = true;			
				
			/*------------------------------------------------*/
		    	clearInterval(VideoCategoryEdit);
		    }
	    },20
	    );
});
