// JavaScript Document

displayOS = true;
campaign1 = 'ausmade';

hash = window.location.hash;
hash = hash.substr(1,hash.length).split('utm_campaign=');
if(hash[1] != '' && hash[1] != null && hash != undefined && hash != 'undefined') setCookie('campaign', hash[1]);

if(document.getElementById('os')) {
	document.getElementById('os').style.display = 'none';
	if(displayOS || getCookie('campaign').indexOf(campaign1)>-1) {
		document.getElementById('os').style.display = 'block';
	}
}


