function fixBannerBg()
{
	var h = $('#banner_box_bg1').height() - 249;
	var pos = 'center '+h+'px';
	$('#banner_box_bg1').css('background-position', pos);
	$('#banner_box_bg2').css('background-position', pos);
}

$(document).ready(function(){
	fixBannerBg();
	setInterval(function(){
		fixBannerBg();
	}, 500);
});
