$(document).ready(function() {
	
	/* PNG Fix */
	$(document).pngFix();
	
	/* Cycle */
	$('.cycle').before('<div id="dot" class="dots">').cycle({
		fx: 'fade',
		speed:  500, 
    	timeout: 6000,
    	pager: '#dot'
	});
	
	/* Slidshow */
	$('#slideshow').cycle({
		fx: 'fade',
		speed:  500, 
    	timeout: 6000
   	});
			
});