$(document).ready(function(){
  $('a.imagelink img').load(function(){
	  if($(this).css('styleFloat') == 'left' || $(this).parent('a.imagelink').css('styleFloat') == 'left'){
		$(this).css('margin-right','18px');
	  }
	  else if($(this).css('styleFloat') == 'right' || $(this).parent('a.imagelink').css('styleFloat') == 'right'){
		$(this).css('margin-left','18px');
	  }
	});
 
  $('img.ZenphotoPress_thumb').load(function(){
	  if($(this).hasClass('alignright')){
		$(this).css('margin-left','18px');
		//$(this).parent('a').addClass("imagelink");
		//$(this).parent('a').css('styleFloat','right');		
	  }
	  else if($(this).hasClass('alignleft')){
		$(this).css('margin-right','18px');
		//$(this).parent('a').addClass("imagelink");
		//$(this).parent('a').css('styleFloat','left');
	  }
	});
  
 
});
