$(function() {
  $('#fotos').jcarousel({
    		wrap: 'circular'
  });

});


$(window).load(function() {
        $('#slider').nivoSlider();
    });
    
function getShop(fotoId) {
 	$.ajax({
		url: 'getFoto.frm.php',
		type: 'POST',
		data: 'fotoId=' + fotoId,
		success: function(result) {
			var arrResult = result.split("||");
			var titel = arrResult[0];
			var omschrijving = arrResult[1];
			$('h2.shopTitle').html(titel);
      $('#shopOmschrijving').html(omschrijving);
      $('#shopPicture').css('background-image','url(http://www.endurance-elite.be/getImg.php?picId=' + fotoId + '&type=B)');
		}
  });
}
    
    
    function showArtikel(artikelId) {
      $.ajax({
				url: 'http://www.endurance-elite.be/getArtikel.frm.php',
				type: 'POST',
				data: 'artikelId=' + artikelId,
								
				success: function(result) {
          var arrResult = result.split('||');
					$('#dialogArtikel').html(arrResult[1]);
          
          $( "#dialogArtikel" ).dialog({
            resizable: false,
            modal: true,
            width: 800,
            height: 500,
            title: arrResult[0],
            position: 'top',
            buttons: {
              "Sluiten": function() {
                $( this ).dialog( "close" );
              }
            }
          });
				}
			});
    }
