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