jQuery(document).ready(function(){ 
	jQuery("#fullTextLink").bind("click", function(){ EVERYZING.playerControls.openTranscript(); });
	jQuery('form').bind('submit',
		function(){
			var str = $(this).find('#searchbox').val();
			str = str.replace(/[^a-zA-Z0-9$%@]+/g," ");
			$(this).find('#searchbox').val(str);
			return true;
		});
});