/*---------------------------------------------------------------------
	DOCUMENT READY
---------------------------------------------------------------------*/
$(function(){
	
	/*---------------------------------------------------------------------
		IE6 透過PNG (requires DD_belatedPNG.js)
		http://www.nk0206.com/life/2009/04/dd-belatedpngie6png.html
	---------------------------------------------------------------------*/
	if ($.browser.msie && $.browser.version < 7.0) {
		$('img[src$=png]').addClass('iepngfix');
	}
	
	/*---------------------------------------------------------------------
		外部リンク
	---------------------------------------------------------------------*/
	$('a[href^="http://"]').not('a[href^=http://'+location.hostname+']')
		.attr('target', '_blank');
	
	
	/*---------------------------------------------------------------------
		画像リンク
	---------------------------------------------------------------------*/
	$('a:has(img)').addClass('image');
	
	
	/*---------------------------------------------------------------------
		ページスクロール
		http://hisasann.com/housetect/2009/03/jquerysmoothscroll.html
	---------------------------------------------------------------------*/
	$("a[href*=#]").click(function() {
		var hash = this.hash;
		if(!hash || hash == "#") return false;
		
		var URI = location.href.replace(/#.*/,''); // URI without hash
		var ahref = this.href.replace(/#.*/,''); // a-href without hash
		
		if (URI==ahref) {
			$($.browser.safari ? 'body' : 'html')
				.animate({scrollTop: $(hash).offset().top}, 1000, "swing");
			return false;
		}
	});
	
	
});