$(function(){

	//外部リンクの場合、自動的に別ウィンドウで表示
	var domain = "[@href^=\"http://"+location.hostname+"/\"]";
	$('a[@href^="http"]').not(domain).click(function() {
		$(this).attr('target','_blank');
	});

	//class="over"でロールオーバーを設定
	//img要素が含まれていたらsrc属性を_on付きのものに差し替える
	$('.over img').each(function(){
		this.originalSrc = $(this).attr('src');
		this.rolloverSrc = this.originalSrc.replace(/(\.gif|\.jpg|\.png)/, "_on$1");
	});
	$('.over').hover(function(){
		$(this).find('img').each(function(){
			$(this).attr('src',this.rolloverSrc);
		});
	},function(){
		$(this).find('img').each(function(){
			$(this).attr('src',this.originalSrc);
		});
	});

	$("img[@src$=png]").pngfix();

});


