$(document).ready(function() {	
	$(function(){
		$.fn.supersized.options = {  
			startwidth: 1024,  
			startheight: 768,
			minsize: .50,
			slideshow: 0,
			slideinterval: 5000  
		};
        $('#supersize').supersized();
    });
	
	//FANCYBOX PROJECTEN
	$("a.fancybox").fancybox();
   $("a.gallery").fancybox({
       	titlePosition : 'inside',
		titleFormat   : function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-inside"><span class="floatRight" style="font-size: 10px; color: #333333;">' +  (currentIndex + 1) + ' / ' + currentArray.length + '</span><span class="flaotLeft">'+title+'</span></span>';
		}
   });
	
	function doSomething() {    
			 saddr = document.getElementById('saddr').value;
			 window.open("http://maps.google.nl/?f=d&source=s_d&saddr=" + saddr + "&daddr=Emmastraat 9, 3134 CG Vlaardingen");
		}
	/*	
	jQuery('#artist').cycle({
			fx: 'fade', delay: 5, pause: true // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	jQuery('#artist2').cycle({
			fx: 'fade', delay: 5, pause: true // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	*/
});


