$(document).ready(function() {    $('.slideshow').cycle({		fx: 'fade', // choose your transition type		speed:    2000, //transition speed    	timeout:  2000 , //time spent on the slide    	autostop: 3 //ends after 3 slides	});});//lightbox function call$(function() {        $('.gallery a').lightBox(); //creates lightbox out of all 'a' items inside id=gallery     });    // menu call$(document).ready(function(){			$(".navsub")			.superfish({				pathClass : 'current',				animation : {opacity:'show'},				delay : 1000			});		});