var openTabtop;

function printableSch() {
	var printSchUrl = "/fnctv/printable_schedule.html?day="+window.openTabtop;
	window.open(printSchUrl,'printSchWin','width=560,height=600,scrollbars=yes');
}

//behavior rules

var rtv = {
	tabs : function(t){
			var tabs = 'tabs_3';
			var e = getParent(getParent(t)).getElementsByTagName('LI').length;
			var id = t.id.substring(5);
			Element.show('tab_content_'+id+'00');
			while (e) {
				if (e!=id) {
					Element.hide('tab_content_'+e+'00');
				}
				e--;
			}
			expandContent(t,tabs);
			window.openTabtop = id;
			return false;
	},
	shell_over : function(t){
			t.style.backgroundColor='#C0D6DF';

	},
	shell_out : function(t){
			t.style.backgroundColor='';
	},
	featured_over : function(t){
			t.style.backgroundColor='#ABD';
	},
	featured_out : function(t){
			t.style.backgroundColor='';
	}
};

var onload_fnctv = function() {
	window.openTabtop = 1;
};

Event.observe(window,'load',onload_fnctv,false);
