$(function () {
	var COOKIE_NAME = 'greenshade_cookie';
	var ADDITIONAL_COOKIE_NAME = 'additional';
	var options = { path: '/', expires: 1 };
	// set cookie
	$('ul#galleryList li a').eq(0).click(function() {
		$.cookie(COOKIE_NAME, 'img/photo01.jpg', options);
		location.href = 'gallery/index.html';
		return false;
	});
	$('ul#galleryList li a').eq(1).click(function() {
		var date = new Date();
		$.cookie(COOKIE_NAME, 'img/photo02.jpg', options);
		location.href = 'gallery/index.html';
		return false;
	});
	$('ul#galleryList li a').eq(2).click(function() {
		var date = new Date();
		$.cookie(COOKIE_NAME, 'img/photo03.jpg', options);
		location.href = 'gallery/index.html';
		return false;
	});
	$('ul#galleryList li a').eq(3).click(function() {
		var date = new Date();
		$.cookie(COOKIE_NAME, 'img/photo04.jpg', options);
		location.href = 'gallery/index.html';
		return false;
	});
	$('ul#galleryList li a').eq(4).click(function() {
		var date = new Date();
		$.cookie(COOKIE_NAME, 'img/photo05.jpg', options);
		location.href = 'gallery/index.html';
		return false;
	});
	$('ul#galleryList li a').eq(5).click(function() {
		var date = new Date();
		$.cookie(COOKIE_NAME, 'img/photo06.jpg', options);
		location.href = 'gallery/index.html';
		return false;
	});
	$('ul#galleryList li a').eq(6).click(function() {
		var date = new Date();
		$.cookie(COOKIE_NAME, 'img/photo07.jpg', options);
		location.href = 'gallery/index.html#2';
		return false;
	});
	$('ul#galleryList li a').eq(7).click(function() {
		var date = new Date();
		$.cookie(COOKIE_NAME, 'img/photo08.jpg', options);
		location.href = 'gallery/index.html#2';
		return false;
	});
	// delete cookie
	$('ul#spnavi li a').eq(4).click(function() { 
		$.cookie(COOKIE_NAME, null, options);
		location.href = 'gallery/index.html';
		return false;
	});
});
