function switchVideo(divname, id, autoplay, thumbid) {
	if (!autoplay) { autoplay = 'false' ; }
	if (!autoplay) { autoplay = '' ; }
	var httpRequest = new XMLHttpRequest() ;
	httpRequest.open("POST","http://www.wexo.co.uk/wexo/aj/vimeoVideo.php?url=http://vimeo.com/"+id+"&autoplay="+autoplay,false);
	httpRequest.send() ;
	jQuery('#'+divname).html(httpRequest.responseText) ;
	changeHighlight(thumbid) ;
}

function changeHighlight(newid) {
	if (currentHighlight != '') {
		jQuery('#'+currentHighlight).css('border','') ;
	}
	jQuery('#'+newid).css('border','4px solid #60B3DF') ;
	currentHighlight = newid ;
}
