/* --------------------------------------------------------------- */
//
// ブラウザの中央にオブジェクトを持って来る
// Date: 2011-09-22 ando
//
/* --------------------------------------------------------------- */

$(function(){
	
	$target = $("#header_topimg");
	$pos = createPos($target);
	
	// 最初の位置を指定
	$("#header_topimg").css("left",$pos + "px");
	$(window).bind("resize", setHeaderPosition);

	// ブラウザがリサイズされたら開始
	function setHeaderPosition(event) {
		$pos = createPos($target);
		$("#header_topimg").css("left",$pos + "px");
	}

	// targetの移動位置を算出
	function createPos(target){
		$winWidth = $(window).width();
		$myWidth = $target.width();
		$pos = ($winWidth - $myWidth) / 2;
		return $pos;
	}
})

