// countries.layout.js

if(typeof jQuery != 'undefined') {
	$(document).ready(function() {
		
		// highlight map on hover
		$('img[usemap]').maphilight({
			fill: true,
			fillColor: '76c188',
			fillOpacity: 1,
			stroke: true,
			strokeColor: '007636',
			strokeOpacity: 1,
			strokeWidth: 1,
			fade: true,
			alwaysOn: false
		});
		
		// highlight selection menu
		$('#map area').hover(function() {
			$('#' + $(this).attr('class')).addClass('active');
		}, function() {
			$('#' + $(this).attr('class')).removeClass('active');
		});
		
		// highlight map on selection menu hover
		$('#selection li').hover(function() {
			$('#map area.' + $(this).attr('id')).mouseover();
		}, function() {
			$('#map area.' + $(this).attr('id')).mouseout();
		});
		
	});
}
