/*------------------------------------------------------------------------------
COCOMUS - CSS Modules Import
Date: 2008-05-02
Copyright (C) COCOMUS. All Rights Reserved.
------------------------------------------------------------------------------*/

//スムーズスクロール設定(jQuery)
$(function(){
	$('a[@href^="#"]').click(function(){$('#'+($(this).attr("href").split('#')[1])).ScrollTo(500,'easeout'); return false;});	
});

//外部リンク表示設定(jQuery)
$(document).ready( function () {
	//外部リンク対象アドレス
	$('a[@href^="http://www.charle.co.jp/"]').addClass("exLink");
 
	//外部リンク表示除外アドレス
	//$('a[@href^="http://www.cocomus.com/forum/').removeClass("exLink");


	//a要素のクラス名が「exLink」のものは、外部ウィンドウ
	$('a.exLink').click(function(){
	window.open(this.href, '');
	return false;
	});

	/* 旧処理
	$('a[@href^="http://"]').not('[@href^="http://www.cocomus.com/"]').click(function(){
	window.open(this.href, '');
	return false;
	});
	$('a[@href^="http"]').not('[@href^="http://www.cocomus.com/').addClass("exLink");
	*/
});

//文字サイズ変更設定(jQuery)
$(function(){
$("div#container").css("font-size",$.cookie('fontsize'));
});
function font(size){
$("div#container").css("font-size",size);
$.cookie("fontsize",size,{expires: 1,path:'/'});
}

// お気に入りに登録する
url = 'http://www.cocomus.com/';
name = 'ここむす | シャルレでつながる素敵な方々のための会員サイト';
function bookMark() {
	if(navigator.userAgent.indexOf("MSIE") > -1){
	  window.external.addFavorite(url,name);
	}else if(navigator.userAgent.indexOf("Firefox") > -1){
		window.sidebar.addPanel(name,url, '');
	}else{
		void(0);
	}
}

// 戻るボタン設定
$(function(){
	$('div.pageNav p.back a[@href^="#"]').click(function(){
		history.back();
		return false;
	});
});

//ポップアップ
function popupWindow(url, name, width, height){
	var windowState = "height=" + height + ",width=" + width + ",scrollbars=yes, resizebale=no, tooibar=no, status=no";
	openWindow = window.open(url, name, windowState);
	openWindow.focus();
	return openWindow;
}

