$(document).ready(function(){
						   
	var $player = $('#player');
	
	// set up mouseover handlers for player buttons
	$('area').hover(function(){
		var alt = $(this).attr('alt');
		var offset = (alt == 'country') ? '0px -65px': '0px -130px';
		$player.css('background-position',offset);
	},function(){
		$player.css('background-position','0px 0px');
	});

	$('area').click(function(e){
		// prevent the default behaviour
		e.preventDefault();
		// get the URL currently assigned to this link
		var link = $(this).attr('href');
		// open the media library in a new window
		$.jqURL.loc(link,{
				w:310,
				h:325,
				target:'imageSelect'
			}
		);
	});

});