// JavaScript Document
hotphone_atLeft = true;
function hotphone_nav(isNext){
	navi_hide = (isNext)?'hotphone_next':'hotphone_prev';
	//new Effect.Fade(navi_hide,{duration:0.2});
	page = (isNext)?2:1;
	div = 'hotphone';
	url = '../homes/assembleHotphone?p='+page;
	var updater = new Ajax.Updater(div,url,{method: 'get',parameter: '', onComplete:function(){}});
	return false;
}
function slide_hotphone(goRight){
	if(!hotPhone_atLeft&&goRight)return;
	if(hotphone_atLeft&&!goRight)return;
	navi_show = (goRight)?'hotphone_prev':'hotphone_next';
	new Effect.Appear(navi_show,{duration:1});
	hotphone_atLeft = !hotphone_atLeft;
}
function changeSubtitle(div, subtitle){
	document.getElementById(div).innerHTML = subtitle;
	return false;
}