function showhideworkers() {
	var container = document.getElementById('branding-workers');
	var bodywidth = document.body.clientWidth;
	if(bodywidth > 1344) {
		container.style.backgroundImage = 'url("templates/xiu/images/workers5.png")';
	} else if(bodywidth > 1248) {
		container.style.backgroundImage = 'url("templates/xiu/images/workers4.png")';
	} else if(bodywidth > 1152) {
		container.style.backgroundImage = 'url("templates/xiu/images/workers3.png")';
	} else if(bodywidth > 1056) {
		container.style.backgroundImage = 'url("templates/xiu/images/workers2.png")';
	} else if(bodywidth > 960) {
		container.style.backgroundImage = 'url("templates/xiu/images/workers1.png")';
	} else {
		container.style.backgroundImage = 'none';
	}
}

onload = function()
{
	showhideworkers();
}

onresize = function()
{
	showhideworkers();
}
