jQuery.noConflict();

jQuery(document).ready(function($){

   $('.home .cycle').cycle({
      fx: 'fade',
      speed: 2500,
      timeout: 6000,
      random: 0,
      cleartype: 1
   });

   $("#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;
   });
      
});
