POKE.video = {}

POKE.video.play = function() {
  POKE.video.controlsHover();
	$('#'+$(this).attr('rel')).youtube({
		playBtn			: $(this),
		placeholder	: $(this).parent().find('.posterwall'),
		videoID			: $(this).attr('rel'),
		staticURL   : POKE.urlmaps.staticURL.url+'images/buttons/'
	});	
	return false;
}

POKE.video.controlsHover = function() {
  $('.video .controls li.last a').live('mouseenter', function(){
      $(this).parent('.last').css('background-position', 'right -114px');
  }).live('mouseleave', function(){
      $(this).parent('.last').css('background-position', 'right -76px');
  });
}