galleries = "48,47,46,45,44,43,42,41,40,39,38,37,36,34,33,32,31,30,29,28,27,23,24,25,22,21,18,19,20,17,13,14,15,9,10,11,12,7,6,5,4,3,2,1,8";
gallery_list = galleries.split(",");
document.write('<p><b><font color="#cccccc">Gallery | ');
for (var counter=0;counter < gallery_list.length;counter++) {
	var pageno = location.search.substring(3,location.search.length);
	if (pageno == gallery_list[counter]) {
		document.write((counter+1)+' | ');
	}
	else {
		document.write('<a href="/Blue/blue-'+gallery_list[counter]+'/blue'+gallery_list[counter]+'.html?g='+gallery_list[counter]+'">'+(counter+1)+'</a> | ');
	}
}
document.write('</font></b><br></p>');