// JavaScript Document

jQuery(document).ready(function() {
	jQuery("#portfolio-list").delegate("li", "mouseover mouseout", function(e) {
		if (e.type == 'mouseover') {
		jQuery("#portfolio-list li").not(this).dequeue().animate({opacity: "0.8"}, 300);
    	} else {
		jQuery("#portfolio-list li").not(this).dequeue().animate({opacity: "1"}, 300);
   		}
	});
});
