$(document).ready(function(){
	resizeVideos();
});
function resizeVideos() {
	$video = $('.article-wrapper embed, .article-wrapper iframe[src*=foxnews.com]');
	var maxWidth = 380;
	var vHeight = $video.height();
	var ratio = $video.height()/$video.width();
	var newHeight = Math.floor(maxWidth*ratio);
	$video.attr('height',newHeight).attr('width',maxWidth);
}
