/*==============================================
	New window Module
==============================================*/
$(function(){
	$('a.blank').click(function(){
		window.open(this.href,'_blank');
		return false;
	});
});

/*==============================================
	Swap image Module
==============================================*/
$(function(){
	var image_cache=new Object();
	$("img.swap").not("[src*='_ovr.']").each(function(i){
		var imgsrc=this.src;
		var dot=this.src.lastIndexOf('.');
		var imgsrc_ovr=this.src.substr(0,dot)+'_ovr'+this.src.substr(dot,4);
		image_cache[this.src]=new Image();
		image_cache[this.src].src=imgsrc_ovr;
		$(this).hover(function(){
			this.src=imgsrc_ovr;
		},function(){
			this.src=imgsrc;
		});
	});
});

/*==============================================
	Word Break Module
==============================================*/
$(function(){
	var i='.wbr';
	if($.browser.msie){
		$(i).css({
			wordWrap:'break-word',
			wordBreak:'break-all',
			display:'block'
		});
	}else{
		var j=(function x(){})[-6]=='x';
		$(i).each(function(){
			j?$(this).html($(this).text().split('').join('<wbr />')):$(this).html($(this).text().split('').join(String.fromCharCode(8203)));
		});
	}
});

/*==============================================
	Popup window Module
==============================================*/
$(function(){
	$('a.popup').each(function(){
		var i=$('a.popup').attr('title');
		i?void(0):$('a.popup').attr('title','ポップアップウィンドウが開きます');
	});
	$('a[class*="popup"]').click(function(){
		var url=this.href;
		var i=$(this).attr('class').substr($(this).attr('class').indexOf('{'),$(this).attr('class').indexOf('}'));
		i=i.split('{')[1].split('}')[0];
		param=i.split(',')
		var left=param[0].split(':')[1];
		var top=param[1].split(':')[1];
		var height=param[2].split(':')[1];
		var width=param[3].split(':')[1];
		var menu=param[4].split(':')[1];
		var scroll=param[5].split(':')[1];
		var status=param[6].split(':')[1];
		var tool=param[7].split(':')[1];
		var locat=param[8].split(':')[1];
		var dir=param[9].split(':')[1];
		var resise=param[10].split(':')[1];
		window.open(url,'','width='+width+',height='+height+',screenX='+left+',left='+left+',screenY='+top+',top='+top+',location='+locat+',scrollbars='+scroll+',directories='+dir+',menubar='+menu+',toolbar='+tool+',resizable='+resise+',titlebar=1,status='+status+',fullscreen=0');
		return false;
	});
});

/*==============================================
	Print Module
==============================================*/
$(function(){
	$('img.print').each(function(){
		var i=$('img.print').attr('title');
		i?void(0):$('img.print').attr('title','印刷ウィンドウが開きます');
		$(this).click(function(){
			window.print();
			return false;
		}).mouseover(function(){
			$(this).css('cursor','pointer');
		});
	});
});
