$(document).ready(function() {
	// thumbs
	$("#box_mini").find("a").click(function(){
		var loader = $(".loader");
		var title = $(this).find("img").attr('title');
		var subtitle = $(this).attr('title');

		open_video($(this).attr('rel'));
		$("#photoMax p").html(title);
		$("#photoMax small").html(subtitle);

		$("#box_mini li").removeClass("selected");
		$(this).parent().addClass("selected");
		
		return false;
	});
	
	$("#box_mini li.selected a").click();
});

function open_video (url)
{
	$("#photoMax div").flashembed({
		src: url + "&hl=en&fs=1&rel=0",
		width: "703px",
		height: "495px",
		allowscriptaccess: "always",
		allowFullScreen: "true",
		HQ:"1"
	});
	
}
