// top page script

$(document).ready(function(){
	var tab = true;
	
	$('#tabC').click(function(){

		var pos =$("#bottomTab").position();
		if(tab){
			// 移動
			$('#bottomTab').animate({
				"bottom":"-=140px"
			},{
				easing: "easeInOutQuart",
				duration: 600
			});
			tab = false;
			$('#tabC a').css("display","block");
			$('#tabC a').css("height","20px");
			$('#tabC a').css("background","url('img/common/h_tab_c.gif') bottom left no-repeat");
		} else {
			// 移動
			$('#bottomTab').animate({
				"bottom":"+=140px"
			},{
			  easing: "easeInOutQuart",
			  duration: 600
			});
			tab = true;
			$('#tabC a').css("display","block");
			$('#tabC a').css("height","20px");
			$('#tabC a').css("background","url('img/common/h_tab_c.gif') top left no-repeat");
		}

	});
});

