$(document).ready(function() {
    $('.slideshow').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
});

	 $(function(){  
	     // loop though each link  
	     $("a.acctitle").each(function(){  
	         // add an event on click  
	         $(this).click(function(){  
	             // hide all div's with accContent class  
	             $(".accContent").each(function(){  
	                 $(this).hide("slow");  
	             });  
	   
	             // the main point of this script - Fetch ref attribute of  
	             // title link and display the hidden div with that id  
	             $("#"+$(this).attr("ref")).show("slow");  
	                 return;  
	               });  
	     });  
	 });  
	$(function() {
	$('#gallery a').lightBox(); // Select all links in object with gallery ID

});
