$(function() {
	$('a[rel="expand"]').click(function() {
		if ($(this).parent('div[rel="extra_out"]').find('span[rel="extra_info"]').is(":hidden")) {
			$(this).parent('div[rel="extra_out"]').find('span[rel="extra_info_stripped"]').hide();
			$(this).parent('div[rel="extra_out"]').find('span[rel="extra_info"]').show();
			$(this).html('- Read Less');
		} else {
			$(this).parent('div[rel="extra_out"]').find('span[rel="extra_info"]').hide();
			$(this).parent('div[rel="extra_out"]').find('span[rel="extra_info_stripped"]').show();
			$(this).html('+ Read More');
		}
	});
});

	function __jsCheck(form) {
		form.jsenable.value = "true";
	}



