$(document).ready(function(){

   
   $('#slideshow').cycle({ 
    fx: 'custom', 
    cssBefore: {  
        top:  -70, 
        left: 545, 
        width: 0, 
        height: 0,  
        zIndex: 1,  
        opacity:0		
    }, 
    animIn:  {  
        top:  0, 
        left: 0, 
        width: 545, 
        height: 456,  
        opacity:1		
    }, 
    animOut: {  
        top:  -70, 
        left: 0, 
        width: 0, 
        height: 0,
        opacity:0		
    }, 
    cssAfter: {  
        zIndex: 0  
    }, 
    speedIn:  1300, 
    speedOut: 500, 
    easeIn:  'easeout'
});
   
   
   
   
    $('.dropdown-menu').hover(
      function () {
        $('.menu-first', this).addClass('slide-down');
        $('.down-list', this).slideDown(200);
      },
      function () {
        obj = this;
        $('.down-list', this).slideUp(200, function(){ $('.menu-first', obj).removeClass('slide-down'); });
      }
    );


   
});
