$(document).ready(function() {
		//
		// VIDEO RESIZE LOGIC
		//--------------------------\
		// v0.1
		//
		defWidth = 505;
		//
		$.setSize = function(element){
			// compile
			var vidHeight = $(element).attr('height');
			var vidWidth = $(element).attr('width');
			var vidRatio = vidHeight/vidWidth;
			var newWidth = defWidth;
			var newHeight = Math.floor(defWidth*vidRatio);
			//
			$(element).attr('height', newHeight);
			$(element).attr('width', newWidth);
			//
		};
		//
		$('#posts div.post div.body object').each(function(){
			//
			if($(this).parents('div.album').length == 0){
				$.setSize(this);
			}
			//
		})
		$('#posts div.post div.body embed').each(function(){
			//
			if($(this).parents('div.album').length == 0){
				$.setSize(this);
			}
			//
		})
		//
});
