/* ---------------------------------------------------------------------- */
/* Set up modal window for employee video
/* ---------------------------------------------------------------------- */
$(function() {
	var content = $('.video_container');
	if (content.find('.play_video').size() > 0 && content.find('.video').size() > 0) {
		var video = content.find('.video > object');	
		video.parent().css('overflow', 'hidden');
		video.parent().css('width', video.attr('width') + 'px');
		video.parent().css('height', video.attr('height') + 'px');
		content.find('.play_video').show();
		content
			.hover(
				// when you mouse over add pointer css
				function() {
					$(this).css({
						cursor: 'pointer'
					})
				}
			)
			.colorbox({
				width: parseInt($(this).find('.video object').outerWidth()), 
				inline: true, 
				href: ".video"
			});
	}
})


