jQuery(document).ready(function($) {
	$.each(availableRegions, function(key, value){
		$('.'+value).fadeIn('slow')
		$('.'+value+'_on').animate({opacity:0},1, function(){
			$(this).show();																									 
		});		
		$('.'+value+'_on').hover(function(){
			$(this).animate({opacity:1},5);			
			$('.topsy', this).fadeIn();
		}, function(){
			$(this).animate({opacity:0},0);		
			$('.topsy', this).hide();
		});
	});	
});

