;/* $.mk_cookie
****************************************************************************
	
	/////////////////////////////////////////////////////////////////////////
	
	@varsion     : 1.0
	@requires    : jquery.js
	@author      : http://www.makinokobo.com - oosugi
	@last update : 2010.10.30 - oosugi
	@Copyright   : Copyright (c) 2010 Skill Partners Inc. All Rights Reserved.
	
	/////////////////////////////////////////////////////////////////////////
	
	$.mk_cookie.create({
		name: '名前',
		value: '値',
		days: '保存日数'
	});
	
	$.mk_cookie.read('名前');
	
****************************************************************************/

(function($){

$.mk_cookie = {
	version: 1.0,
	
	create: function(config){
		config = $.extend({
			name: 'mk_cookie',
			value: null,
			days: 365
		},config);
		
		var name = window.location.hostname + ':' + config.name;
		
		var expires = '';
		if(config.days){
			var date = new Date();
			date.setTime(date.getTime()+(config.days*24*60*60*1000));
			expires = "; expires="+date.toGMTString();
		}
		document.cookie = name+"="+config.value+expires+"; path=/";
	},
	
	read: function(name){
		(name)? name = ':' + name : name = ':mk_cookie';
		name = window.location.hostname + name;
		var nameEQ = name + '=';
		var ca = document.cookie.split(';');
		for(var i=0;i < ca.length;i++){
			var c = ca[i];
			while (c.charAt(0)==' ') c = c.substring(1,c.length);
			if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
		}
		return null;
	},
	
	alertAll: function(){
		var ca = document.cookie.split('; ');
		var m = '';
		for(var i=0;i<ca.length;i++){
			m += '['+i+'] '+ca[i]+"\n";
		}
		alert(m);
	}
};


})(jQuery);

