function goto(direction) { 
    var text = self.location.href;
    var pos1 = text.indexOf('_');
	var pos2 = text.indexOf('.html');
    var num = text.substring(pos1+1,pos2);
	var dest = parseInt(num) + direction
    window.location.href = 'leather_' + dest + '.html'
}
