function GAMtoggler(obj, w, h) {
	// assumes "original" width of 188px, height of 250px and "original" margin-right of 17px
	var obj = $(obj);
	if (obj.hasClassName('expanded')) {
		// the holder is currently expanded
		obj.removeClassName('expanded');
		obj.setStyle({
			width: '188px',
			height: '250px',
			marginRight: '17px'
		});
		obj.firstChild.setStyle({ zIndex : '1' });
	} else {
		// expand the holder
		obj.setStyle({
			width: w + 'px',
			height: h + 'px',
			marginRight: '0'
		});		
		obj.addClassName('expanded');
		obj.firstChild.setStyle({ zIndex : '99999999' });
	}
}