$(document).ready(function() {

   Shadowbox.init({
      counterType: 'skip',
      overlayOpacity: '.7'
   });

$('.link').addClass('ui_widget_shadow');

$('.drop_down').each(function() {
   $(this).parent().eq(0).hoverIntent({
      timeout: 100,
      over: function () {
         var current = $('.drop_down:eq(0)', this);
         current.slideDown(100);
      },
      out: function () {
         var current = $('.drop_down:eq(0)', this);
         current.fadeOut(200);
      }
   });
});


$('.drop_down a').hover(function () {
   $(this).stop(true).animate({color: '#ffffff'}, {speed: 'fast', easing: ''});
}, function() {
   $(this).stop(true).animate({color: '#171e22'}, {speed: 'fast', easing: ''});
});

/*
$('.dropdown a').hover(function () {
   $(this).animate({paddingLeft: '35px'}, {speed: 100, easing: 'easeOutBack'});
}, function () {
   $(this).stop(true).animate({paddingLeft: '0'}, {speed: 100, easing: 'easeOutBounce'});
});
*/
   
   
   
});