// JavaScript Document

$(document).ready(
	function(){
		setBtnAction();
		footerPos();
		$(window).resize(footerPos);
		
		}
	);


//フッターポジション 
function footerPos(){
	var bodyHeight=$('body').height();
	var footHeight=$('#footer').height();
	$('#footer').css('top',(bodyHeight-footHeight-30)+'px');
	}
	
//ボタンオーバー 
function setBtnAction(){
	var preLoad=new Object();
	
	$('.clickable,.input_btn').map(function(i){
		var out=this.src.replace(/_[a-z]+\.jpg/,'_out.jpg');
		var over=this.src.replace(/_[a-z]+\.jpg/,'_over.jpg');
		preLoad[over]=new Image();
		preLoad[over].src=over;
		$(this).hover(function(){this.src=over;},function(){this.src=out;});
		$(this).css('cursor','pointer');
	});
	}
