$(document).ready(function(){
	
	$('#Map area').mouseover(function(){
								  
		var oImg = $(this).attr('rel');
		var sLink = $(this).attr('href');
		$('a#mouseout-helper').addClass(oImg);
		$('a#mouseout-helper').attr('href', sLink);
		$('#' + oImg).fadeIn();
	});
	
	$('a#mouseout-helper').mouseout(function(){
		$('div.map-hover').fadeOut();
		$('a#mouseout-helper').removeClass();
	});
	
	$('a[rel="lightbox"]').lightbox({
		fileLoadingImage : '/images/loading.gif',
		fileBottomNavCloseImage : '/images/closelabel.gif',
		overlayOpacity : 0.6,
		strings : {
			prevLinkTitle: 'previous image',
			nextLinkTitle: 'next image',
			prevLinkText:  '&laquo; Previous',
			nextLinkText:  'Next &raquo;',
			closeTitle: 'close',
			image: 'Image ',
			of: ' of '
		}
	});
	
})
