var navpages, disppages, maxpage, currentpage, nav_per_page;

$(document).ready(function() {
	
	currentpage = 1;
	nav_per_page = 4;
	
navpages = ['thumbs/platformsandals/candy.html' , 'thumbs/platformsandals/carlie.html' , 'thumbs/platformsandals/cassia.html' , 'thumbs/platformsandals/clayton.html' , 'thumbs/platformsandals/clive.html' , 'thumbs/platformsandals/colby.html' , 'thumbs/platformsandals/dade.html' , 'thumbs/platformsandals/danny.html' , 'thumbs/platformsandals/darcie.html' , 'thumbs/platformsandals/davina.html' , 'thumbs/platformsandals/denzil.html' , 'thumbs/platformsandals/diana.html' , 'thumbs/platformsandals/dusty.html' , 'thumbs/platformsandals/dyson.html' , 'thumbs/platformsandals/edan.html' , 'thumbs/platformsandals/elda.html' , 'thumbs/platformsandals/emeline.html' , 'thumbs/platformsandals/erin.html' , 'thumbs/platformsandals/eros.html' , 'thumbs/platformsandals/eunice.html' , 'thumbs/platformsandals/evan.html' ,     'thumbs/platformsandals/koko.html' , 'thumbs/platformsandals/laurie.html' , 'thumbs/platformsandals/leah.html' , 'thumbs/platformsandals/libby.html' , 'thumbs/platformsandals/lucy.html' , 'thumbs/platformsandals/tabor.html' , 'thumbs/platformsandals/tambra.html' , 'thumbs/platformsandals/tia.html' , 'thumbs/platformsandals/tilly.html' , 'thumbs/platformsandals/tori.html' ,   ]; 


disppages = ['stock/platformsandals/candy.html', 'stock/platformsandals/carlie.html', 'stock/platformsandals/cassia.html', 'stock/platformsandals/clayton.html', 'stock/platformsandals/clive.html', 'stock/platformsandals/colby.html', 'stock/platformsandals/dade.html', 'stock/platformsandals/danny.html', 'stock/platformsandals/darcie.html', 'stock/platformsandals/davina.html', 'stock/platformsandals/denzil.html', 'stock/platformsandals/diana.html', 'stock/platformsandals/dusty.html', 'stock/platformsandals/dyson.html', 'stock/platformsandals/edan.html', 'stock/platformsandals/elda.html', 'stock/platformsandals/emeline.html', 'stock/platformsandals/erin.html', 'stock/platformsandals/eros.html', 'stock/platformsandals/eunice.html', 'stock/platformsandals/evan.html',  'stock/platformsandals/koko.html', 'stock/platformsandals/laurie.html', 'stock/platformsandals/leah.html', 'stock/platformsandals/libby.html', 'stock/platformsandals/lucy.html', 'stock/platformsandals/tabor.html', 'stock/platformsandals/tambra.html', 'stock/platformsandals/tia.html', 'stock/platformsandals/tilly.html', 'stock/platformsandals/tori.html',  ];

	
	
	maxpage = Math.ceil(navpages.length / nav_per_page);
	
	$("#nav-strip-item1").load(navpages[0]);
	$("#nav-strip-item2").load(navpages[1]);
	$("#nav-strip-item3").load(navpages[2]);
	$("#nav-strip-item4").load(navpages[3]);
	
	display(0);
});