/**
 * ---------------------- Subversion Information ------------------------------
 * ****************************************************************************
 * $Date: 2009-07-30 10:59:10 -0700 (Thu, 30 Jul 2009) $
 * $Rev: 692 $
 * $Author: steven $
 *
 * SVN URL of this file
 * $HeadURL: http://hal/svn/cms/trunk/idx/inc/js/registration.js $
 * ****************************************************************************
 *
 * @copyright Real Estate Webmasters 2004 - 2009
 */

$(document).ready(function() {
    $('a.info-links').each(function () {
        var regex = new RegExp("details.html", "i");
		if (regex.test(this.href)) {
            this.href = this.href.replace('details.html','register.html');
		} else {
            var new_url = this.href.split('/listings/');
            var list_id = this.href.split('mn-mls-');
            this.href = new_url[0] + '/listings/' + list_id[1] + '/register.html';
		}
    });
});