$(document).ready(function() {
	// Open nofollow links in a new window.
	$('a[rel="nofollow"]').click( function(){
		window.open( $(this).attr('href') );
		return false;
	});

	// Swap out the obfuscated email and phone number spots on the site.
	$('.emailAddress').html('<a href="mailto:sales@SolidareDesign.com">sales@SolidareDesign.com</a>');
	$('.phoneNumber').html('+1 (518) 595-9320');
});