$(function(){
	var H = $('#model_name').height();
	var P = 89.5 - H/2;
	$('#model_name').css("top",P);
	//$(document).ready(setPosi);
		$('div.model_detail_header_thumbs div a').lightBox();

		//プロフィール部分が空かどうかを走査
		$('div.model_detail_header div.body span').each(function(){
			var dat = $(this).text();
			if( dat == '' || dat == null || dat == '&nbsp;' || dat == ' '){
				$(this).hide();
			}
		});

});


function setPosi(){
		$("div.model_detail_header_thumbs div a img").each(function(){
			var bW = $(this).width();
			var bH = $(this).height();
			if ( bW > bH ) {
				$(this).css("margin-top",20);
			}
	});

}



