<!--


$(document).ready(function(){

	$(".content img").each(function(){	
		if ($(this).css('float') == 'right')			$(this).css('margin', "0 0 6px 10px");
        else if ($(this).css('float') == 'left') 		$(this).css('margin', "0 10px 6px 0");
	});
	
	
	$(".content p").each(function(){
		
		if ($(this).find("img").length > 1){
			if ($(this).find("img").eq(0).css('float') == 'left')
				$(this).next("*").eq(0).css('clear', 'left');
		}
	});	
});

 
// -->
