function loadBanner (x, h) {
	if (x == "home") x = "09";
	box = (document.all) ? parent.document.all('banner') : (document.getElementById) ? parent.document.getElementById('banner') : parent.document.layers['banner'];
	box.src = 'images/banner_' + x + '.png';
	//box.src = 'images/banner_' + x + '.jpg';
}

function showBox (x) {
	box = (document.all) ? document.all(x) : (document.getElementById) ? document.getElementById(x) : document.layers[x];
	box.className = 'show'; 
}

function hideBox (x) {
	box = (document.all) ? document.all(x) : (document.getElementById) ? document.getElementById(x) : document.layers[x];
	box.className = 'hide'; 
}

function on (x) {
	box = (document.all) ? document.all(x) : (document.getElementById) ? document.getElementById(x) : document.layers[x];
	box.className = 'showbtnon'; 
}

function off (x) {
	box = (document.all) ? document.all(x) : (document.getElementById) ? document.getElementById(x) : document.layers[x];
	box.className = 'showbtn'; 
}

function switchInfo (b) {
	var c = b.charAt(b.length-1);
	source = (document.all) ? document.all(b) : (document.getElementById) ? document.getElementById(b) : document.layers[b];
	box = (document.all) ? document.all('show' + c) : (document.getElementById) ? document.getElementById('show' + c) : document.layers['show' + c];
	box.innerHTML = source.innerHTML;
	off('btnsynopsis' + c);
	off('btndetails' + c);
	off('btnclips' + c);
	on('btn' + b);
}