
	Cufon.replace('h1, h2, h3, h5');  
	
	$.fn.cycle.defaults = { 
    	timeout:       5000,  // milliseconds between slide transitions (0 to disable auto advance) 
    	speed:         3000,  // speed of the transition (any valid fx speed value)
    	sync:          1      // true if in/out transitions should occur simultaneously 
    }; 

	
	$(function() {
    	$('#slideshow').cycle();
	});
    
