$(document).ready(function() {

    $('#viewer1').cycle({
    	fx:     'fade', 
   		speed:   800, 
    	timeout: 9000,
    	delay: 0
	});
	
	$('#viewer2').cycle({
    	fx:     'fade', 
    	speed:   800, 
    	timeout: 9000,
    	delay: 1000
	});
	
	$('#viewer3').cycle({
    	fx:     'fade', 
    	speed:   800, 
    	timeout: 9000,
    	delay: 2000
	});
	
	$('#viewer4').cycle({
    	fx:     'fade', 
    	speed:   800, 
    	timeout: 9000,
    	delay: 3000
	});
	
	$('#viewer5').cycle({
    	fx:     'fade', 
    	speed:   800, 
    	timeout: 9000,
    	delay: 4000
	});
	
	$('#viewer6').cycle({
    	fx:     'fade', 
    	speed:   800, 
    	timeout: 9000,
    	delay: 5000
	});
	
	$('#viewer7').cycle({
    	fx:     'fade', 
    	speed:   800, 
    	timeout: 9000,
    	delay: 6000
	});
	
	// By suppling no content attribute, the library uses each elements title attribute by default
	$('a[href][title]').qtip({
	  content: {
	     text: false // Use each elements title attribute
	  },
	  position: {
	  	adjust: { x: 0, y: -6 },
      	corner: {
     	    target: 'topMiddle',
    	    tooltip: 'bottomMiddle'
    	}
 	  },
 	  style: { 
 	  	border: { width: 0 },
 	  	name: 'dark'
 	  },
   	  show: { delay: 0 }
	});
	
});
