$(function() {
	$("a[rel^='modal']").click(function() {
		showModal(this);
	});
});

function showModal(el) {
	var el = $(el).attr('rel').split("-");
	var type = el[1];
	var title = type;
	var width = "710px";
	var height = "450px";
	var anim = false;
	switch (type) {
		case "screencast":
			title = "iPhone Application - Screencast";
			anim = true;
			break;
		case "screenshot":
			title = "iPhone Application - Screenshot";
			width = "320px";
			height = "490px";
			type = type + el[2];
			break;
	}
	var c = new au.com.tramtracker.Modal();
	c.init({
		title: title,
		id: "moreinfoPopup",
		width: width,
		height: height,
		animation: anim
	});
	c.load({
		type: "GET",
		url: "/modal.php?p=iphone&s="+type,
		dataType: "html"
	});
	c.addButton("Previous", c.prevButtonClickHandler);
	c.addButton("Next", c.nextButtonClickHandler);	
}

