$(document).ready(function() {
	 
	$('#content div.mq_list').click(function(event) {
		event.stopPropagation();
		$('#content div.mq_overlay').fadeOut('fast');
		
		$(this).parent().css('position','relative');
		
		$(this).next().fadeIn();
	});		
	
	$('#content a.mq_close').click(function(event) {
		event.stopPropagation();
		event.preventDefault();
		$(this).parents('.mq_overlay').fadeOut('fast', function () {
			$('#content div.memberQuote').css('position','static');
		});
	});
	
	$('#content div.memberQuote').each(function(index) {
		$(this).find('.mq_list2').first().html($(this).children('.mq_list').first().html());
	});		
	
	$('#content div.memberQuote:odd').each(function(index) {
		$(this).addClass('mq_odd');
	});	

});
