jQuery(window).load(function(){
	// Fixes images over 546px wide
	var bigImages = jQuery('img.size-full');
	bigImages.each(function(){
		if(jQuery(this).width() > 546){
			jQuery(this).attr('width', '546');
		};
	});
	
	jQuery('#right_sidebar iframe').attr('width', '210');
});


