$(document).ready(function(){
	// Default
	
	current = '#bn';
	
	if ( current ) $(current).fadeIn("fast");
   
	// IE Bug : $('area').hover doesnt work so used bind instead
	
	$('area').bind("mouseover",function(){
		var href = $(this).attr("href");
		if ( current ) $(current).fadeOut("fast");
		$(href).fadeIn("fast");
		current = href;
	});
	
	$('area').click(function() {
		return false;
	});
});