$(document).ready(function(){
  $('.item').hover(function (){
    $(this).find(".item-overlay").animate({bottom:'149px'}, 200);
	$(this).find(".item-overlay ul").show();
    $(this).find(".item-overlay img").animate({height:'140px'}, 200);
	$(this).find('img.image').animate({opacity:0.5}, 200);
	$(this).find('img.video').animate({opacity:0.5}, 200);
	$(this).find('img.swf').animate({opacity:0.5}, 200);
    //$('.item .item-overlay').animate({bottom:'40px'});
  },function (){
    $(this).find(".item-overlay").animate({bottom:'23px'}, 250, function (){
		$(this).find("img").css({height:'14px'});
		$(this).find("ul").hide();
	});		
 	$(this).find('img.image').animate({opacity:1.0}, 250);
	$(this).find('img.video').animate({opacity:1.0}, 200);
	$(this).find('img.swf').animate({opacity:1.0}, 200);
    //$('.item .item-overlay').animate({bottom:'20px'});
  }
  );

	$('.item').simpleoverlay({
	    inspeed: 'fast',
	    outspeed: 'fast'
	});

	$('.mycarousel').jcarousel();

});
