// JavaScript Document
$(document).ready(function(){
	$('img[alt="Image"]').css('width', '180px');	

	$('.post-bg img').each(function(){
		if( $(this).width() > 525 )
			$(this).width(525);
	});
})
					
