$j(document).ready(function() {
	//alert($j("#photoonly img").css("width"));
	$j(".page_photo img").each(function(){
		var widthph = $j(this).css("width");
		widthph = widthph.replace('px','');
		if(widthph > 580){
			$j(this).css("width", '550px')
		}
	});
});
