/* tooltips.js is used with wz_tooltip.js to display the below tooltips. 
	http://www.walterzorn.com/tooltip/tooltip_e.htm#download

	Display Images in ToolTip
	--------------------------------------
	<a href="index.htm" onmouseover="Tip('Text with <img src=\'pics/image.jpg\' width=\'60\'>image.')"> Homepage</a>
	
	
	ToolTip via function call
	--------------------------------------
	<script type="text/javascript"> 
	var txt1 = "This is the text of the first tooltip"; 
	
	function TooltipTxt(n) 
	{ 
		return "This is the text of the " + n + " tooltip"; 
	} 
	</script> 
	</head> 
	<body> 
	<script type="text/javascript" src="wz_tooltip.js"></script> 
	... 
	<a href="a.htm" onmouseover="Tip(txt1)">Link 1</a> 
	... 
	<a href="b.htm" onmouseover="Tip(TooltipTxt('second'))">Link 2</a> 
	... 
	<a href="c.htm" onmouseover="Tip(TooltipTxt('third'))">Link 3</a> 
	... 
	</body> 
	</html> 
	
	 onmouseover="Tip(TooltipTxt('test'))"
*/
<!--
function TooltipTxt(n)
{
	switch (n) {
		case "extramen":
			return "Each move with MiniMovers already includes 2 men.<br>Choose extra men, if you would like <b>more than</b> two men<br>to help move your furniture on the day. <br><br>Rates are currently: $49/hr per extra man or $59/hr per extra man after hours or on Sundays and Public Holidays. A call out fee may also be charged."
		break
		case "secondhandboxes":
			return "Second-hand boxes are not always available" 
		break
		case "removalboxes":
			return "If you are within our free delivery area, we will send  you a packing kit with more than enough boxes, tape and butchers paper <br>relevant to the number of rooms/items you have to move. <br><br>If you do not wish to use any of the items in this pack, <br>then simply return it intact to our operators on the day of your move <br>and you will not be charged. <br><br>Any items used from this packing kit will be charged at the rates applicable." 
		break
		case "emove":
			return "This service is free and provided by eMove (3rd Party).<br>A representative from eMove will call you if you select yes." 
		break
		case "prepacking":
			return "Our professional packers will come out to your house and help you pack<br>at a rate of $45/hr per person or $55/hr per person on weekends and after hours and  $75/hr per person for public holidays. A call out fee may apply.<br><br>They can pack one room or the whole house at your direction"
		break
		case "unpacking":
			return "Our professional un-packers will come out to your house and help you unpack<br>at a rate of $45/hr per person or $55/hr per person on weekends and after hours and  $75/hr per person for public holidays. A call out fee may apply.<br><br>They can unpack one room or the whole house at your direction"
		break
		case "depotcharges":
			return "We believe in charging you fairly from depot to depot. <br><br>MiniMovers services are charged to and from the most suitable depot for your move,<br> usually between your pick up and drop off addresses. <br>This is because we believe in paying our people fairly for the time they work <br>whilst keeping your costs to a minimum."
		break
		case "fireants":
			return "If you currently live in a known fire ant suburb, we will not be able to move your pot plants or anything containing soil."
		break
		 
		default:
			return ""
	}
}
// -->