function ieHover()
{
	var nav = document.getElementById("navigation");
	if (nav)
	{
		var nodes = nav.getElementsByTagName("li");
		for (var i=0; i<nodes.length; i++)
		{
			nodes[i].onmouseover = function() 
			{
				this.className += " hover";
				if(this.getElementsByTagName('ul').length > 0)
					hideSelectBoxes(this);
			}
			nodes[i].onmouseout = function()
			{
				this.className = this.className.replace(" hover", "");
				if(this.getElementsByTagName('ul').length > 0)
					showSelectBoxes(this);
			}
		}
	}
}

if (window.attachEvent && !window.opera){
	window.attachEvent("onload", ieHover);
}

// JavaScript Document


window.onload = function(){
	
	document.getElementById('phone_no').outerHTML = document.getElementById('phone_no').outerHTML + '<div id="social"><div style="position:absolute; display:inline; margin-left:4px;"><div style="margin: 0px; padding: 0px; width: 106px; height: 24px; text-indent: 0px; float: none; display: inline-block;" id="___plusone_0"><iframe style="left: 0px; top: 0px; width: 106px; height: 24px; visibility: visible; position: static;" id="I1_1313630517417" tabIndex="-1" vspace="0" marginHeight="0" src="https://plusone.google.com/u/0/_/+1/fastbutton?url=http%3A%2F%2Fwww.mediamessages.co.nz%2F&amp;size=standard&amp;count=true&amp;annotations=&amp;hl=en-US&amp;jsh=r%3Bgc%2F23123384-f8bf5791#id=I1_1313630517417&amp;parent=http%3A%2F%2Fwww.mediamessages.co.nz&amp;rpctoken=306089101&amp;_methods=onPlusOne%2C_ready%2C_close%2C_open%2C_resizeMe" frameBorder="0" width="100%" allowTransparency="true" name="I1_1313630517417" marginWidth="0" scrolling="no" hspace="0"></iframe></div></div></div>';
    
	
	
};
