function roll()
{
	//menu mouseovers 
	$S('.mact a').action({onmouseover:function(){$S('.act').action({initialize: function(){this.style.display = 'block';}});$S('.hotspotmap').action({initialize: function(){this.style.display = 'none';}});}});
	$S('.mnsw a').action({onmouseover: function(){$S('.nsw').action({initialize: function(){this.style.display = 'block';}});$S('.hotspotmap').action({initialize: function(){this.style.display = 'none';}});}});
	$S('.mnt a').action({onmouseover: function(){$S('.nt').action({initialize: function(){this.style.display = 'block';}});$S('.hotspotmap').action({initialize: function(){this.style.display = 'none';}});}});
	$S('.mqld a').action({onmouseover: function(){$S('.qld').action({initialize: function(){this.style.display = 'block';}});$S('.hotspotmap').action({initialize: function(){this.style.display = 'none';}});}});
	$S('.msa a').action({onmouseover: function(){$S('.sa').action({initialize: function(){this.style.display = 'block';}});$S('.hotspotmap').action({initialize: function(){this.style.display = 'none';}});}});
	$S('.mtas a').action({onmouseover: function(){$S('.tas').action({initialize: function(){this.style.display = 'block';}});$S('.hotspotmap').action({initialize: function(){this.style.display = 'none';}});}});
	$S('.mvic a').action({onmouseover: function(){$S('.vic').action({initialize: function(){this.style.display = 'block';}});$S('.hotspotmap').action({initialize: function(){this.style.display = 'none';}});}});
	$S('.mwa a').action({onmouseover: function(){$S('.wa').action({initialize: function(){this.style.display = 'block';}});$S('.hotspotmap').action({initialize: function(){this.style.display = 'none';}});}});
	//menu mouseout
	$S('h3 a').action({onmouseout: function(){$S('.map .map').action({initialize: function(){this.style.display = 'none';}});$S('.hotspotmap').action({initialize: function(){this.style.display = 'block';}});}});
	//map mouseovers
	$S('.imapact').action({onmouseover:function(){$S('.mact a').action({initialize: function(){this.style.color = 'red'; this.style.textDecoration = 'underline';}});}});
	$S('.imapnsw').action({onmouseover:function(){$S('.mnsw a').action({initialize: function(){this.style.color = 'red'; this.style.textDecoration = 'underline';}});}});
	$S('.imapnt').action({onmouseover:function(){$S('.mnt a').action({initialize: function(){this.style.color = 'red'; this.style.textDecoration = 'underline';}});}});
	$S('.imapqld').action({onmouseover:function(){$S('.mqld a').action({initialize: function(){this.style.color = 'red'; this.style.textDecoration = 'underline';}});}});
	$S('.imapsa').action({onmouseover:function(){$S('.msa a').action({initialize: function(){this.style.color = 'red'; this.style.textDecoration = 'underline';}});}});
	$S('.imaptas').action({onmouseover:function(){$S('.mtas a').action({initialize: function(){this.style.color = 'red'; this.style.textDecoration = 'underline';}});}});
	$S('.imapvic').action({onmouseover:function(){$S('.mvic a').action({initialize: function(){this.style.color = 'red'; this.style.textDecoration = 'underline';}});}});
	$S('.imapwa').action({onmouseover:function(){$S('.mwa a').action({initialize: function(){this.style.color = 'red'; this.style.textDecoration = 'underline';}});}});
	//map mouseout
	$S('area').action({onmouseout:function(){$S('h3 a').action({initialize: function(){this.style.color = ''; this.style.textDecoration = '';}});}});
}

//init
window.onload = roll;