$(document).ready(function() {
	
	var iVideoWidth  = $("#video object").attr("width");
	var iVideoHeight = $("#video object").attr("height");
	var iNewVideoWidth = "660";
	
	if (iVideoWidth > iNewVideoWidth) {
		var iNewVideoHeight = Math.floor((iVideoHeight * iNewVideoWidth) / iVideoWidth);

		$("#video object").attr("width",iNewVideoWidth).attr("height",iNewVideoHeight);
		$("#video embed").attr("width",iNewVideoWidth).attr("height",iNewVideoHeight);var iNewVideoHeight = Math.floor((iVideoHeight * iNewVideoWidth) / iVideoWidth);

		$("#video object").attr("width",iNewVideoWidth).attr("height",iNewVideoHeight);
		$("#video embed").attr("width",iNewVideoWidth).attr("height",iNewVideoHeight);	
	}
});
