 $(document).ready(function() {
	$('ul#features').animatedinnerfade({
						speed: 2000,
						timeout: 15000,
						//type: 'random',
						containerheight: '350px',
						containerwidth: '700px',
						animationSpeed: 15000,
						animationtype: 'fade',
						bgFrame:'none',
						controlBox: 'show',
						controlBoxClass: 'mycontrolboxclass',
	                                        controlButtonsPath: 'http://www.dsbox.com/images/innerfade',
                                                displayTitle: 'yes' 
					});				
					
					
				
	
	  
      function addMega(){
        $(this).addClass("hovering");
        }

      function removeMega(){
        $(this).removeClass("hovering");
        }

    var megaConfig = {
         interval: 500,
         sensitivity: 4,
         over: addMega,
         timeout: 500,
         out: removeMega
    };

    $("li.mega").hoverIntent(megaConfig)

      
    });