$(document).ready(function(){
	/**Map hover effect**/
	$('#stateMap ul a').hover(
		function() {
			var hoverId = $(this).attr('id');
			hoverId = hoverId.replace('Link','Hover');
			$('#mapContainer #'+hoverId).fadeIn('normal');
		},
		function() {
			$('#mapContainer .mouseover').hide();
		}
	);
	
    $('.ad a').lightBox();

	$('div#flickr-photo-stream a').each(function() {
		$(this).attr('rel','lightbox');
		var imgSrc = $(this).children().attr('src');
		$(this).attr('href',imgSrc.replace('_s.jpg','.jpg'))
	});

	$('a[rel*=lightbox]').lightBox();
	
	$("a[href$='.pdf']").attr('target','_blank');

	/*$('#stateImageMap area').hover(
		function() {
			var hoverId = $(this).attr('id');
			hoverId = hoverId.replace('Area','Hover');
			$('#mapContainer #'+hoverId).fadeIn('normal');
		},
		function() {
			$('#mapContainer a').hover(
				function() {
					$('#'+$(this).children().attr('id')).fadeIn('normal');
				},
				function() {
					$('#mapContainer .mouseover').hide();
				}
			);
		}
	);*/
	
	/*$('#stateImageMap area').hover(
		function() {
			var hoverId = $(this).attr('id');
			hoverId = hoverId.replace('Area','Hover');
			$('#mapContainer #'+hoverId).fadeIn('normal');
		},
		function() {
			$('#mapContainer .mouseover').hide();
		}
	);*/
	/**End map hover**/
});