﻿

function getAappendHref(stringToAppend)
{
	jQuery("a[href*='?p=']") .each(function(){  /*alert(this.href);*/ this.href = this.href+stringToAppend; });
	
}

