function loadVOD() {	
	var div = $('schedule_vod_container');
	
	var scheduleAjax = new Ajax.Request('/site/locknload/schedule_vod.do', {
		onSuccess: function(transport) { 	
			div.innerHTML = transport.responseText;
		},
		
		onFailure: function() {
			div.innerHTML = '<br/><br/>Sorry, the On Demand schedule is not currently available.';
		}
	});  
	//div.innerHTML = 'test';
}
