// JavaScript Document
$(document).ready(function(){
	$(".list a").hover(function() {
		$(this).next("div").animate({opacity: "show", top: "220"}, "fast");
	}, function() {
		$(this).next("div").animate({opacity: "hide", top: "220"}, "fast");
	});
	
	/* selected works */
	jQuery('#mycarousel').jcarousel();
 
});
