// JavaScript Document
var defaultStr;



$(document).ready(function(){


	$(".btn_A").hover(function(){ 
		$(this).fadeTo(100,0.5); 
	},function() {
		$(this).fadeTo(100,1); 
	});
	
	$(".btn_B").hover(function(){ 
		$(this).fadeTo(200,0.5); 
	},function() {
		$(this).fadeTo(200,1); 
	});

	
	// smooth scroller
	$("a[href^=#]").click(function() {
		var hash = this.hash;
		if(!hash || hash == "#")
			return false;
		$($.browser.safari ? 'body' : 'html')
			.animate({scrollTop: $(hash).offset().top}, 500, "swing");
		return false;
	});

	
});
