$(function() {
	$("a[rel='modal']").click(function() {
		showModal(this);
	});
	swfobject.embedSWF("/resources/swf/flv_player.swf", "FLVPlayer", "377", "486", "9.0.0", null, null, {wmode: "transparent"});
});

function showModal(el) {
	var type = $(el).text();
	var title = type;
	var width = "710px";
	var height = "450px";
	switch (type) {
		case "iPhone":
			type = "iphone";
			break;
		case "Mobile SMS":
			type = "mobilesms";
			break;
		case "tramTRACKER.com":
			type = "tramtracker";
			break;
		case "Phone - Interactive Voice Response (IVR)":
			type = "ivr";
			break;
		case "tramTRACKER® Widgets & Gadgets":
			type = "widgets";
			title = "tramTRACKER<sup>&reg;</sup> Widgets &amp; Gadgets";
			break;
	}
	var c = new au.com.tramtracker.Modal();
	c.init({
		title: title,
		id: "moreinfoPopup",
		width: width,
		height: height,
		animation: true
	});
	c.load({
		type: "GET",
		url: "/modal.php?p=moreinfo&s="+type,
		dataType: "html"
	});
	c.addButton("Previous", c.prevButtonClickHandler);
	c.addButton("Next", c.nextButtonClickHandler);	
}

