function $(elemId){
	return document.getElementById(elemId);
}

function emgSwitch(){
	if($('emargancy').className == 'active'){
		$('emargancy').className = 'normal';
		$('emargancy').style.background = "url('img/emargancy.jpg') no-repeat";
	}else{
		$('emargancy').className = 'active';
		$('emargancy').style.background = "url('img/emargancy-active.jpg') no-repeat";
	}
}