// JavaScript Document
//
// jquery to handle the changing of the googlemap link colors
//
jQuery(document).ready(function($) {

	$('#google_map small a').css("color","#58595b");
	$('#google_map small a').mouseenter(function() {
		$('#google_map small a').css("color","#3b846d");
	});
	$('#google_map small a').mouseleave(function() {
		$('#google_map small a').css("color","#58595b");
	});
	$('#google_map small a').click(function() {
		$('#google_map small a').attr("target", "_blank");
	});
});
