jQuery.noConflict();

jQuery(document).ready(function($){

   $('#mainContent a').hover(function() {
      $(this).animate({ backgroundColor: '#d5e7f4' }, 1000);
   },function() {
      $(this).animate({ backgroundColor: '#fff' }, 500);
   });

   $('#action-items li').hover(function() {
      $(this).fadeTo(200, 1);
      $(this).siblings().fadeTo(500, 0.1);
      return false;
   }, function() {

   });
   
   $('#action-items').hover(function() {

   }, function() {
      $('#action-items li').fadeTo(200, 1);
      return false;
   });

   $('#secondCol .cycle').cycle({
      fx: 'fade',
      speed: 2500,
      timeout: 4000,
      random: 0
   });

      
});