
//Slideshow
var ar_images = Array();
ar_images[ar_images.length] = "images/foto_2.jpg";
ar_images[ar_images.length] = "images/foto_3.jpg";
ar_images[ar_images.length] = "images/foto_4.jpg";
ar_images[ar_images.length] = "images/foto_5.jpg";
ar_images[ar_images.length] = "images/foto_6.jpg";
ar_images[ar_images.length] = "images/foto_7.jpg";
ar_images[ar_images.length] = "images/foto_8.jpg";
ar_images[ar_images.length] = "images/foto_9.jpg";
ar_images[ar_images.length] = "images/foto_10.jpg";
ar_images[ar_images.length] = "images/foto_11.jpg";
ar_images[ar_images.length] = "images/foto_12.jpg";
ar_images[ar_images.length] = "images/foto_13.jpg";
ar_images[ar_images.length] = "images/foto_14.jpg";
ar_images[ar_images.length] = "images/foto_15.jpg";
ar_images[ar_images.length] = "images/foto_16.jpg";
ar_images[ar_images.length] = "images/foto_17.jpg";

var mp3s = Array();
mp3s[mp3s.length] = 'mp3/12 Lilac Wine.mp3';
mp3s[mp3s.length] ='mp3/2-11 See You When I Get There.mp3';
mp3s[mp3s.length] ='mp3/12 Feel So High.mp3';
mp3s[mp3s.length] = 'mp3/09 Le petit oiseau de toutes les cou.mp3';
mp3s[mp3s.length] = 'mp3/06 I\'ve Got a Crush On You.mp3';


mp3s.sort(randOrd);


function randOrd()
{	
	return (Math.round(Math.random())-0.5); 
} 

function getImagesSlide()
{
	document.getElementById('slideshow').style.display='none';
	
	var i = 0;
	var rn = Math.round(Math.random()*ar_images.length);
	while(ar_images.length > i)
	{
		document.writeln('<img id="slideimage_'+i+'" src="'+ ar_images[i] +'" alt="Restaurant Don Quichotte"/>\n');
		i++;
	}
	
	
	
	document.getElementById('slideimage_' + rn).className = 'active';
	document.getElementById('slideshow').style.display='block';

}



$(document).ready(function(){
						   
$().piroBox({
      my_speed: 300, //animation speed
      bg_alpha: 0.5, //background opacity
      radius: 4, //caption rounded corner
      pirobox_next : 'piro_next', // Nav buttons -> piro_next == inside piroBox , piro_next_out == outside piroBox
      pirobox_prev : 'piro_prev',// Nav buttons -> piro_prev == inside piroBox , piro_prev_out == outside piroBox
      close_all : '.piro_close',// add class .piro_overlay(with comma)if you want overlay click close piroBox
      slideShow : 'slideshow', // just delete slideshow between '' if you don't want it.
      slideSpeed : 3 //slideshow duration in seconds(3 to 6 Recommended)
      });


 
});

