// JavaScript Document

$(document).ready(function(){
	
	if (!($.browser.msie))
	{	
	$('.continents a img').css({'opacity': 0});
	
	$('.north-america a img').delay(500).stop().animate({'opacity': 1}, 'slow');
	$('.south-america a img').delay(750).stop().animate({'opacity': 1}, 'slow');
	$('.europe a img').delay(1000).stop().animate({'opacity': 1}, 'slow');
	$('.asia a img').delay(1250).stop().animate({'opacity': 1}, 'slow');
	$('.africa a img').delay(1500).stop().animate({'opacity': 1}, 'slow');
	$('.australia a img').delay(1750).stop().animate({'opacity': 1}, 'slow');
	
	$('a.continents-link').hover(function() {
		$(this).addClass('hovered');
		$('a.continents-link:not(".hovered")').children('img').stop().animate({'opacity':0.33}, 'medium');
	   }, function(){
		$(this).removeClass('hovered');
		$('a.continents-link:not(".hovered")').children('img').stop().animate({'opacity':1}, 'medium');
	});
	}	
	
});
