$(function() {

	$('.fade').live('mouseover mouseout', function(event) {
  		if (event.type == 'mouseover') {
			$(this).fadeTo(500, 0.7);
  		} else {
			$(this).fadeTo(500, 1.0);
  		}
	});

});



