﻿/*

	MTF Direct Contact us js functionality - please ensure jquery library has been loaded before using this script

*/

$(document).ready(function()
{
	//Add tooltip function to popup multiple franchises in a area where needed
	/*
	*/
	$("li.city a.has-multiple-branches").cluetip(
	{
		sticky:true,
		width:175,
		dropShadow:false,
		mouseOutClose:true,
		local: true,
		hideLocal: true,
		closePosition:"title",
		topOffset:-5,
		leftOffset:-80,
		positionBy:'fixed'
		//showTitle:false,
		//titleAttribute:""
		//activation:'click'
		//fx: { open:'fadeIn', openSpeed:'100' }
	});

});
 
