$(function() {

	var $header = $('header');

/*	$('#menu li a').click(function() {
		var id = $(this).attr('href')
		,	dest = $(id).offset().top;

		$('html:not(:animated),body:not(:animated)').animate({ scrollTop: dest}, 1600, function() {
			window.location.hash = id;
		});
		return false;
	});
*/
	$(window).scroll(function() {
		if (($header.offset().top+$header.height()+30)<$(this).scrollTop()) {
			$('#fix-nav').fadeIn('slow');
		} else {
			$('#fix-nav').fadeOut('slow');
		}
	});

	$("img.thumb").hover(function() {
        $(this).stop(true, true).fadeTo("slow", 1.0);
    }, function() {
        $(this).stop(true, true).fadeTo("slow", 0.5);
    }).imgZoom({ loadingImg: "/images/loading.gif" });

//	$('section').height($(window).height());
	if ( location.href.match(/(http(s)?:\/\/(?:.+\/)+)(?:.+)?$/)[1] != 'http://lessthan.jp/'){
		$('#menu > li > a').each(function(){
			if ( location.href.indexOf( $(this).attr('href') ) != -1 ) $(this).addClass('active');
		})
	}
});

