$(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');
	  }
	});
	
	//alert("In js");
	
	$('.rightCol a.postThumb img').css('marginLeft', function() {
		 return "-" + (45-this.width)/3 + "px";
	});
	$('.rightCol a.postThumb img').css('marginTop', function() {
		 return "-" + (45-this.height)/12 + "px";
	});
	
  
 
});
