/*
*	AJAX script for retrieving the latest clip
*	from specified album at vimeo.com
*
*	Author: Alexander Dahlberg
*
***************************/

var swedishAlbum = '89508';
var englishAlbum = '94759';

function getLatestClip(albumId) {

	var url = 'http://www.myserver.dev/twi/common/php/get_latest_clip.php';
	var ao = new AjaxObject101();
	ao.funcDone = callback;
	ao.sndReq('get',url, 'albumId='+albumId);

}

function callback(clipId) {
	clipHTML = '<object width="464" height="267"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id='+clipId+'&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id='+clipId+'&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="464" height="267"></embed></object>';

	document.getElementById('latestClip').innerHTML = clipHTML;
}