$(document).ready(function(){
	print_links("#main-content .content a", "http://www.wvmic.com");
});

function print_links(_selector, _root){
	$(_selector).each(function(){
		var _link = $(this).attr("href");
		if(_link != undefined){
			if((_link.indexOf('http:') != 0) && (_link.indexOf('mailto:') != 0)){
				while(_link.indexOf("../") != -1){
					_link = _link.replace("../","");
				}
				_link = _root + "/" + _link;
			} 
			_link = _link.replace("mailto:","");
			$(this).after('<span class="print-link"> (' + _link + ')</span>'); 
		}
	});
}
