window.onload = function () {
	$('aumentar').onclick = function () {
		ancho = Math.round($('juegoFlash').offsetWidth * 1.15);
		alto = Math.round($('juegoFlash').offsetHeight * 1.15);

	//wrapper, juego, sombra, pie
		if(ancho > 735) {
			$('wrapper').style.width =  Math.round($('wrapper').offsetWidth * 1.15) + 'px';
			$('juego').style.width =  Math.floor(($('juego').offsetWidth * 1.15)-12) + 'px';
			$('sombra').style.width =  Math.round($('sombra').offsetWidth * 1.15) + 'px';
			$('pie').style.width =  Math.round($('pie').offsetWidth * 1.15) + 'px';

		}
		
		$('juegoFlash').style.width = ancho + 'px';
		$('juegoFlash').style.height = alto + 'px';
	}

	$('reducir').onclick = function () {
		ancho = Math.round($('juegoFlash').offsetWidth * 100 / 115);
		alto = Math.round($('juegoFlash').offsetHeight * 100 / 115);

		if($('wrapper').offsetWidth > 990) {
			$('wrapper').style.width =  Math.round($('wrapper').offsetWidth * 100 /115) + 'px';
			$('juego').style.width =  Math.floor((($('juego').offsetWidth) *100 / 115)-66) + 'px';
			$('sombra').style.width =  Math.round($('sombra').offsetWidth * 100 / 115) + 'px';
			$('pie').style.width =  Math.round($('pie').offsetWidth *100 / 115) + 'px';
		}
		
		$('juegoFlash').style.width = ancho + 'px';
		$('juegoFlash').style.height = alto + 'px';
	}
}
