// JavaScript Document
$(document).ready(function() {
	
	
	
	// initialise Superfish 
	$("ul.menu").superfish({ 
	    animation: {height:'show'},   // slide-down effect without fade-in 
	    delay:     100               // 1.2 second delay on mouseout 
	}); 

	//SLIDESHOW SETTINGS
	$('.slideshow').cycle({
				fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
			});
	
	
	
	
	
	
	
	
	
});
