$(document).ready(function() {  
						   
  $('#hd').cycle({ 
	fx:     'fade', 
    speed:   500, 
    timeout: 5000, 
    next:   '#hd',
    pause:   3 
  });
  
});


$(document).ready(function()
{
   $('ul#rspul li a[title]').qtip({
      position: {
         corner: {
            target: 'topMiddle',
            tooltip: 'bottomMiddle'
         }
      },
      style: {
         border: {
         	width: 5,
            radius: 10
         },
         padding: 10, 
         textAlign: 'center',
         tip: true, // Give it a speech bubble tip with automatic corner detection
         name: 'cream' // Style it according to the preset 'cream' style
      }
   });
});
