$(function(){

	// external link
	$('a[href^="http"]:not(a[href*="curlycollection.jp"],a[href*="curlyathome.jp"])').click(function(){
		window.open(this.href, '');
		return false;
	});

	// colorbox
	$('.blogcattextwrap').each(function(i){
		$('p a[href*="/pict/"]:has(img)', this).removeAttr("onclick").colorbox({
			scrolling: false,
			initialWidth: 50,
			initialHeight: 50,
			maxWidth:"90%", 
			maxHeight:"90%",
			rel: 'group' + i
		});
	});

});

