

var ZenyakuHB = {};

ZenyakuHB.moniterVoice = function(){

    //開くボタン配置
	var openBT = $( '#product-open-bt' );	
    
	openBT.click(function(){
		ZenyakuHB.toggleVoice( openBT );
    });

}

ZenyakuHB.toggleVoice = function( openBT ) {
    $( '#product-close' ).slideToggle(
				"normal",
				function(){
					if( ZenyakuHB.toggleVoice.btnStrCheck ){
						$( "#moniter-bt" ).attr( "src" , "common/img/index/bt_close.gif" );
					} else {
						$( "#moniter-bt" ).attr( "src" , "common/img/index/bt_more.gif" );
					}
					ZenyakuHB.toggleVoice.btnStrCheck = !ZenyakuHB.toggleVoice.btnStrCheck;
				}

			);
}
ZenyakuHB.toggleVoice.btnStrCheck = true;


$(function(){
	
	ZenyakuHB.moniterVoice();
	
})
