jQuery(document).ready(function() {
	jQuery(".portwrap").delegate("li", "mouseover mouseout", function(e) {
		if (e.type == 'mouseover') {
		jQuery(".portwrap li").not(this).dequeue().animate({opacity: "0.3"}, 450);
    	} else {
		jQuery(".portwrap li").not(this).dequeue().animate({opacity: "1"}, 450);
   		}
	});
});
