
$(document).ready(function() {
    // get IATHome cookie value
    var home = $.cookie('IATHome');
    if ( home ) {
        // Patch all href's ending in index.htm
        // with a new value specified by the cookies value
        $('a[href$=index.htm]').attr('href', home);
	}
});



