/* 
/* by Hiroko Y.
/* Don't use prev/next. Need to implement prevPage/nextPage. Because Innard1 has a navigator and 
/* each 1 product image is 1 PAGE to be able to show a navigator automatically.
/*
/* prevPage, nextPage
==============================================*/
a.prevPage{
	float:left;
	width:18px;
	height:18px;
	background:url(left.png) no-repeat;
	cursor:pointer;
	margin-left:40px;
}

a.nextPage{
	float:left;
	width:18px;
	height:18px;
	cursor:pointer;
	background-image:url(right.png);
}

a.prevPage:hover, a.nextPage:hover{
	background-position:0px -18px;		
}

/* 
/* navigator - squared image
==============================================*/
.navi {
	height:20px;
	float:left;
	margin-top:5px;
}
.navi a {
	width:12px;
	height:12px;
	float:left;
	margin:0px 5px;
	background:url(navigator.png) 0 0 no-repeat;
	font-size:1px;
}

/* mouseover state */
.navi a:hover {
	background-position:0 -12px;      
}
/* active state (current page state) */
.navi a.active {
	background-position:0 -24px;     
}

