$(document).ready(function() {
	$(".castlink").click(function(){
		var id = $(this).attr("title");
		var content = '<embed src="http://videos.indiemapper.com.s3.amazonaws.com/player.swf" width="853" height="480" allowscriptaccess="always" allowfullscreen="true" flashvars="config=http://videos.indiemapper.com.s3.amazonaws.com/' + id + '.xml&autostart=true"/>';
		
		Shadowbox.open({
			content:		content,
			player:		"html",
			width:		853,
			height:		480
		});
	});
	
	$("a.map_type").click(function(){
		var content = '<img src="' + $(this).attr("href") + '" alt="' + $(this).html() + '" style="margin:5px" /><p style="color:white; margin:5px 15px">' + $(this).attr("title") + '</p>';
		
		Shadowbox.open({
			content:		content,
			player:		"html",
			width:		807,
			height:		322 + (25 * Math.ceil($(this).attr("title").length / 115))
		});
		
		return false;
	});
})