window.onresize = bunnersImageTurn;
window.onload = bunnersImageTurn;

function bunnersImageTurn(){
	if(document.body.clientWidth < 994){
		document.getElementById('idTopBunner1').className='topBunner1 minBun1';
		document.getElementById('idTopBunner2').className='topBunner2 minBun2';
	}
	else
	{
		document.getElementById('idTopBunner1').className='topBunner1';
		document.getElementById('idTopBunner2').className='topBunner2';
	}
}
