
	function loadcallme(evnt) {
       	    var el = Event.element(evnt);
	    if (el.parentNode && el.parentNode.href) {
	       var urlp = el.parentNode.href + '/p'
	       Lightview.show({
        	  href: urlp,
          	  rel: 'iframe',
          	  options: {
            	  	width: 650,
		        height: 450,
            		topclose: true
	          }
        	});
	     }
	     Event.stop(evnt);
	}
        function initcallme(){
		var myaccounturl = 'https://my.spin.net.au/call-me';
		if (window.location.hostname.search('comcen') > 0) { myaccounturl = 'https://lounge.comcen.com.au/call-me'; }
		else if (window.location.hostname.search('australis') > 0) { myaccounturl = 'https://myaccount.australis.com.au/call-me'; }
		$$('a[href="' + myaccounturl + '"]').each(function(el){		
		        Event.observe(el, 'click', loadcallme, false);
		});
        }
        Event.observe(window, 'load', initcallme, false);


