var macka_switch = false;
var macka_image = new Image();
domain = 'http://alexander-mixclub.com';
//domain = 'http://localhost/alexander';
macka_image.src =  domain + '/img/bg/footer_macka.jpg';

window.onresize = function() {
	obj = document.getElementById('footer');
	img = obj.style.backgroundImage;
	obj.style.backgroundImage = img;
}

function toggleMacka() {
	obj = document.getElementById('footer');
	if ( macka_switch )	{
		obj.style.backgroundImage = "url('"+ domain +"/img/bg/footer.jpg')";
		macka_switch = false;
	} else {
		obj.style.backgroundImage = "url('"+ domain +"/img/bg/footer_macka.jpg')";
		macka_switch = true;
	}
}