jQuery(document).ready(function () {
    jQuery('a').each(function (index) {
        if (this.href.indexOf('collegeanduniversity.net') > 0) {
            if (this.target != '_blank') {
                this.target = '_blank';
            }
            if (this.href.indexOf('cid=2271') == -1) {
                this.href = this.href + '&cid=2271';
            }
			if (this.href.indexOf('tab=online') == -1 && this.href.indexOf('schooltype=1') == -1)
			{
				this.href = this.href + '&schooltype=1';
			}
        }
    });
}); 
