$(document).ready
(	
	function() 
	{
		$('.content img[hspace]').each
		(
			function(index) 
			{
				$(this).css('margin-left', $(this).attr('hspace') + 'px');
				$(this).css('margin-right', $(this).attr('hspace') + 'px');
			}
		);
		$('.content img[vspace]').each
		(
			function(index) 
			{
				$(this).css('margin-top', $(this).attr('vspace') + 'px');
				$(this).css('margin-bottom', $(this).attr('vspace') + 'px');
			}
		);
	}
);
