
$(document).ready(function () {
	// Hide the container
	$('.sales-rep').hide();

	// Add onclicks for area elements
	$('area').click(function (e) {
		e.preventDefault();
		// Grab the id
		p = $(e.target.hash);
		// Strip Script tags
		p.find("script").remove();
		// Match an url and include in href
		p = p.html();
		p = p.replace(/www\.([a-zA-Z0-9\-]*)\.(com|net|us|org)/, '<a href="http://www.$1.$2" target="_blank">www.$1.$2</a>');	
		// Display the modal with the content
		$.modal(p);
	});
});
