$(document).ready(function () {
	$('p.product_content a').each(function(){
		$(this).attr('href', $(this).attr('href').replace('(at sign goes here)', '@'));
//		$(this).attr('href').replace('the at sign will go here','@');
	});
});