$(function () {
	
	$('a[href*=#]').click(function() {
		if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
			var target = $(this.hash);
			target = target.length && target;
			if (target.length) {
				var targetOffset = $('html').offset().top;
				$('html,body')
					.animate({scrollTop: targetOffset}, {duration: 1000, easing: "easeOutExpo"});
				return false;
			}
		}
	});
	
	$('a.blank')
		.click(function(){
			window.open(this.href,"","");
			return false;
		});
		
	$('#news #detail a').each(function(){
		if(this.href.indexOf('http://') != -1) $(this).click(function(){window.open(this.href,"","");return false;});
	});	
		
	$('#global,div.aside,#detail,#contents').flatHeights();
	
	
	if($.browser.msie) {
		//if($.browser.version < 7){
			$('#home,#news,#profile,#contact,#works.datebased_archive,#works.archives,#shop').find('div.aside').exFixed();
			$('#global').exFixed();
		//}
		$('#news #detail .section:first-child,#shopInfo #detail .section:first-child,,.about#shop #detail .section:first-child').css({'padding-top':0,'border':'none'});
		$('#news #detail .section:last-child,#profile #detail div.clearfix:last-child').css({'margin-bottom':0});
	}
	
	$('#shop #detail #btn')
		.find('li.next a')
			.click(function(){
				$('#form').submit();
				return false;
			})
		.end();
	
});
