$(function() {
	$("a[rel='modal']").click(function() {
		showModal(this);
	});
	swfobject.embedSWF("/resources/swf/homepage.swf", "Box1", "261", "230", "9.0.0", null, null, {wmode: "transparent"});
});

function showModal(el) {
	var type = $(el).text();
	var title = "";
	var width = "710px";
	var height = "450px";
	switch (type) {
		case "yarratrams.com.au":
			title = "Yarra Trams tramTRACKER<sup>&reg;</sup> Panel";
			type = "yarratrams";
			width = "560px";
			break;
		case "Mobile Internet":
			width = "300px";
			height = "150px";
			type = "mobileinternet";
			title = "Warning - Are you sure?";
			break;
	}
	var c = new au.com.tramtracker.Modal();
	c.init({
		title: title,
		id: "homePopup",
		width: width,
		height: height
	});
	c.load({
		type: "GET",
		url: "/modal.php?p=home&s="+type,
		dataType: "html"
	});
	c.addButton("Previous", c.prevButtonClickHandler);
	c.addButton("Next", c.nextButtonClickHandler);	
}

function showDemonstrationVideo() {
	var c = new au.com.tramtracker.Modal();
	c.init({
		title: "tramTRACKER<sup>&reg;</sup> Demonstration Video",
		id: "demoPopup",
		width: "604px",
		height: "380px",
		animation: false
	});
	c.load({
		type: "GET",
		url: "/modal.php?p=home&s=demo",
		dataType: "html",
		success: loadDemoVideo
	});
}

function loadDemoVideo() {
	swfobject.embedSWF("/resources/swf/homepage_video.swf", "VideoHolder", "603", "339", "9.0.0", null, null, {wmode: "transparent"});
}