﻿/*/////////////////////////////////////////////////////////////

js : core
Date : 2011.06.29

//////////////////////////////////////////////////////////////*/

/* ------------------------------------------------------------- 

 vars

--------------------------------------------------------------*/


/* ------------------------------------------------------------- 

 layouts

--------------------------------------------------------------*/


function layoutSet(){
}

function btnsSet(){
	$(".btn").hover(function(){
		$(this).stop().fadeTo(300, 0.6);
	},function(){
		$(this).stop().fadeTo(300, 1.0);
	});
	
	$('a[href*=#]').click(function() {
		var target = $(this.hash);
		target = target.length && target;
		if (target.length) {
			var sclpos = 0;
			var scldurat = 600;
			var targetOffset = target.offset().top - sclpos;
			$('html,body').stop().animate({scrollTop: targetOffset}, {duration: scldurat, easing: "easeOutExpo"});
			return false;
		}
	});
	
}


/* ------------------------------------------------------------- 

 modules

--------------------------------------------------------------*/



/* ------------------------------------------------------------- 

 Init

--------------------------------------------------------------*/


//page load
$(function(){
	//if (typeof document.documentElement.style.maxHeight != "undefined") {
		btnsSet();
	//}
});

//page load Comp
$(window).load(function (){
});

