$(document).ready(function(){

	//属性名前方一致
	$('div.innerbox a[@href^="http://"]').not('[@href^="http://www.lat43n.com"]')
		.css('margin-right','3px')
		.append('<img src="/common/images/link-external.gif" width="18" height="15" alt="" />')
		.click(function(){
			window.open(this.href, '_blank');
			return false;
			})

	$('div.innerbox a[@href^="https://"]').not('[@href^="https://www.lat43n.com"]')
		.css('margin-right','3px')
		.append('<img src="/common/images/link-external.gif" width="18" height="15" alt="" />')
		.click(function(){
			window.open(this.href, '_blank');
			return false;
			})

	//属性名後方一致
	$('a[@href$=".pdf"]')
		.css('margin-right','3px')
		.append('<img src="/common/images/link-pdf.gif" width="18" height="15" alt="" />')
		.click(function(){
			window.open(this.href, '_blank');
			return false;
			})

	$('a[@href$=".doc"]')
		.css('margin-right','3px')
		.append('<img src="/common/images/link-doc.gif" width="18" height="15" alt="" />')
		.click(function(){
			window.open(this.href, '_blank');
			return false;
			})

	$('a[@href$=".xls"]')
		.css('margin-right','3px')
		.append('<img src="/common/images/link-xls.gif" width="18" height="15" alt="" />')
		.click(function(){
			window.open(this.href, '_blank');
			return false;
			})

	//その他
	$('.window-open')
		.css('margin-right','3px')
		.append('<img src="/common/images/link-external.gif" width="18" height="15" alt="" />')
		.click(function(){
			window.open(this.href, '_blank');
			return false;
			})

	$('.no-external-mark')
		.css('margin-right','0px')
		.append('')
		.click(function(){
			window.open(this.href, '_blank');
			return false;
			})


})