// JavaScript Document

function hoverbox(style) {
	style.opacity = 0; style.width = '100px'; style.height = '75px'; style.left = '0px'; style.top = '0px';
	style.zIndex = 99;
	obj = null;
}
		
function hoverboxHover(style) {
	style.opacity = 1; style.width = '200px'; style.height = '150px'; style.left = '-50px'; style.top = '-38px';
	style.zIndex = 999;
	obj = style;
}
		
function hoverboxToggleSize(style) {
	switch (style.width) {
		case "400px":
			style.opacity = 1; style.width = '200px'; style.height = '150px'; style.left = '-50px'; style.top = '-38px';
			break;
				
		default:
			style.opacity = 1; style.width = '400px'; style.height = '300px'; style.left = '-150px'; style.top = '-113px';
			break;
	}
}
		
