
$(window).load(function(){
	$('.media').media({caption:false});
	centerVdos();
});

function centerVdos(){
	$('.vDos').each(function(){
		var dims=$(this).attr("id");
		dims=dims.split('x');
		var newL=(608-dims[1]-20)/2;
		$(this).css({'margin-left':newL});
		$('.vDoL, .vDoR',this).css({display:'block'});
		$('embed',this).attr('bgColor','');
	});
}