﻿$(document).ready(function(){
      $('img').each(function(){
           $(this).css({margin:'0'});
      });
      $('#equinox').find('img').each(function(){
                var src = $(this).attr('src');
                if (src.indexOf('http') != 0) {
                    src = 'http://www.equinox.co.za' + src;
                }
                $(this).attr('src',src);
            });
            $('#equinox').find('a').each(function(){
		if (typeof $(this).attr('href') != 'undefined') {
                	var href = $(this).attr('href').replace('?','%3F').replace(/&/g,'%26');
        	        href = href.replace('http://money.za.msn.com','');
	                if (href.indexOf('http') != 0) {
				if (href.indexOf('/') != 0) { href = '/' + href; }
		                   href = 'http://money.za.msn.com/equinox.aspx?Page=' + href;
	                }
                	$(this).attr('href',href);
		}
            });
            $('#equinox').find('div').each(function(){
                $(this).css({display:'block'});
            });
            $('#equinox').css({paddingLeft:'10px'});
        });
	$('#equinox').find('form').each(function(){
	    if (typeof $(this).attr('action') != 'undefined') {
            var href = $(this).attr('action').replace('?','%3F').replace(/&/g,'%24');
            href = href.replace('http://money.za.msn.com','');
            if (href.indexOf('http') != 0) {
		if (href.indexOf('/') != 0) { href = '/' + href; }
                href = 'http://money.za.msn.com/MSNJustMoney/equinox.aspx?Page=' + href;
            }
            $(this).attr('action',href);
		}
        });