function link(page) { window.location = page }
function ranNum() { var num = Math.floor( Math.random()*111111 ); return num }

$(document).ready(function () {
	
	var eps = $("a.eps").attr('href');
	var realtors = $("a.realtors").attr('href');
	
	$('a.eps').attr('href', eps + "?" + ranNum() )
	$('a.realtors').attr('href', realtors + "?" + ranNum() )
	
    /*
	$("body").css('display', 'none');
    $(window).load(function () {
        $("body").show()
    });
	*/
	/*
	var status = $(document).getUrlParam("sent");
    if (status == "true") {
        $("p.status").html("Message Sent");
    };*/
	
});



