$(function() {

	// [drop title="more..."] Drop Downs
	linkColor = $('a').css('color');
	$('.mere-drop-title').css({color:linkColor});
	$('.mere-drop-content').hide();
	$i = 1;
	$('.mere-drop-title').click(function(){
		$dropper = $(this);
		if ($i%2 == 0) {
			thisDrop = $(this).parent().find('.mere-drop-content');
			$(thisDrop).slideToggle(function(){
				$dropper.toggleClass('mere-drop-title-w-content');	
			});
			$i++;
		} else {
			thisDrop = $(this).parent().find('.mere-drop-content');
			$dropper.toggleClass('mere-drop-title-w-content');
			$(thisDrop).slideToggle();
			$i++;
		}
	});
});
