var aProd = new Array( );

$(document).ready(function(){
	$.get("/public/gallery/gallery.xml", {}, function(xml) {
		i = 0;
		$('photo', xml).each(function(iaa){
			aProd[i] = $(this).text();
			i++;
		});
	},"xml");

});

function navigate(i,type){
	switch(i){
		case 'next':
			type++;
			if(aProd[type]){

			} else {
				type = 0;
			}
			generateBox(type);
			break;
		case 'prev':
			type--;
			if(aProd[type]){

			} else {
				type = aProd.length - 1;
			}
			generateBox(type);
			break;
	}
}

function generateBox(type){
	sHtml = '<h2 class="center">Nasze sklepy</h2><div id="gall">'
		+ '<div class="gln"><a href="javascript:void(0);" onclick="navigate(\'prev\','+ type +');" rel="nofollow"><img src="/public/tpl/kz/images/arrow_SG_left.gif" alt="<" /></a></div>'
		+ '<img id="glc" src="'+ aProd[type] +'" alt="nasze sklepy" style="width:120px; height:100px;" />'
		+ '<div class="gln"><a href="javascript:void(0);" onclick="navigate(\'next\','+ type +');" rel="nofollow"><img src="/public/tpl/kz/images/arrow_SG_right.gif" alt=">" /></a></div>'
		+ '</div>';
	$('#right').html(sHtml);
}