// JavaScript Document By Galvez, Neil D.

$(function() {
	$('.ilist .desc').animate({opacity: 0}, -1);
	
	$('.ilist .link').mouseover(
		function() {
			$(this).parent().children('.desc').css({'left': $(this).width(), 
													'width': $(this).parent().children('.desc').width(),
													'top': -$(this).parent().children('.desc').height()});
			$(this).parent().children('.desc').stop().animate({opacity: 1}, 500);
		}
	);
	
	$('.ilist .link').mouseout(
		function() {
			$(this).parent().children('.desc').animate({opacity: 0}, 500);
		}
	);

});