$(document).ready(
	function(){
		if($('.slideshow').length > 0){	
			$('.slideshow').cycle({
				speed: 700
			});
			$('.slideshow a').click(function(){
				var targetURL = $(this).attr('href');
				if(targetURL != '#'){
				  return true;
				}
				return false;
			});
		}
	}
);
