$(document).ready(function() {
	
	$('div#image-cycle').cycle({ 
    	fx:     'fade', 
    	speed:   2000,
    	timeout: 2000, 
    	next:   'div#image-cycle', 
    	pause:   1
	});
	
	$("a.fancybox").fancybox({
		overlayOpacity:  .8,
		centerOnScroll:  true,
		frameWidth:      640,
		frameHeight:     480
	});
	
	$.ajax({
	  url:       'http://www.fly2sky.ch/randomPic.php',
	  dataType:  'json',
    success:   function(data)
               {                 
                 $('div#side img').attr('src', data.smallURL);
                 $('div#side a').attr('href', data.largeURL);
               }	  	  
	});
	
});


