//VIMEO video player


//LOAD the first video
$(document).ready(function(){
  playVid(22341744);
});

//PLAY video
function playVid(imgId) {
	if (!imgId) {
		$("#dvPlayer").html ("&nbsp;");
		return;
	}
	
	$('#dvPlayer').hide();$('#dvTitle').hide();
	$('#dvPlayer').fadeIn();$('#dvTitle').show();
	
	var sHTML = 
		'<iframe src="http://player.vimeo.com/video/' + imgId + '?title=0&amp;byline=0&amp;portrait=0&amp;color=a3b98b&amp;autoplay=0" width="580" height="337" frameborder="0"></iframe>';
	$("#dvPlayer").html (sHTML);
}
