jQuery(document).ready(function() {    jQuery('.slideshow').cycle({		fx: 'fade', // choose your transition type		speed:    2000, //transition speed    	timeout:  5000 , //time spent on the slide    	autostop: 6 //ends after 5 slides	});});//lightbox function calljQuery(function() {        jQuery('#gallery a').lightBox(); //creates lightbox out of all 'a' items inside id=gallery     });
