// Thickbox Function Call ------------------------------------------------------------------------------------------------------------
function thickbox(title, url, width, height, type, is_modal)
{
	tb_show(title, ((type == "inline")?'#TB_inline?':(url + ((url.indexOf('?') != -1)?"&":"?"))) + 'KeepThis=true' + ((type == "iframe")?'&TB_iframe=true':'') + '&height=' + height + '&width=' + width + ((type == "inline")?'&inlineId=' + url:'') + '&modal=' + ((is_modal)?'true':'false'), false); 
}
// -----------------------------------------------------------------------------------------------------------------------------------

var dest 	= '';
var title 	= '';

$(document).ready(function() {

	$('#map1').click(function(event) {
		event.preventDefault();
		thickbox('Direction to 1830 Holsonback Drive', 'map1.html', 700, 400, "iframe", false);
	});
	
	$('#map2').click(function(event) {
		event.preventDefault();
		thickbox('Direction to 143 Executive Circle Daytona Beach, FL 32114', 'map2.html', 700, 400, "iframe", false);
	});
	
	$('#map3').click(function(event) {
		event.preventDefault();
		thickbox('Direction to 210 Fentress Blvd, Daytona, FL 32114', 'map3.html', 700, 400, "iframe", false);
	});
});
