// JavaScript Document
$(document).ready(function() {
	$("#btnhome").hover(function(){$("#btnhome_h").fadeIn("fast");},function(){$("#btnhome_h").fadeOut("fast");	});
	$("#btnnews").hover(function(){$("#btnnews_h").fadeIn("fast");},function(){$("#btnnews_h").fadeOut("fast");	});
	$("#btnintro").hover(function(){$("#btnintro_h").fadeIn("fast");},function(){$("#btnintro_h").fadeOut("fast");});
	$("#btnstory").hover(function(){$("#btnstory_h").fadeIn("fast");},function(){$("#btnstory_h").fadeOut("fast");});
	$("#btnstaff").hover(function(){$("#btnstaff_h").fadeIn("fast");},function(){$("#btnstaff_h").fadeOut("fast");});
	$("#btnchara").hover(function(){$("#btnchara_h").fadeIn("fast");},function(){$("#btnchara_h").fadeOut("fast");});
	$("#btnproducts").hover(function(){$("#btnproducts_h").fadeIn("fast");},function(){$("#btnproducts_h").fadeOut("fast");	});
	$("#btnspecial").hover(function(){$("#btnspecial_h").fadeIn("fast");},function(){$("#btnspecial_h").fadeOut("fast");});
	$(".clickSelect").click(function(){this.select();	});
	$(".lb-img").hover(function(){$(this).animate({opacity:"0.5"},300);},function(){$(this).animate({opacity:"1"},300);	});
});
