function checkPosition(image,max_height)
{
	var img = new Image();
	img.src = image.src;
	image_height=img.height;	
	margin_top=(max_height-image_height)/2;	
	image.style.marginTop=margin_top+'px';
}