jQuery(function($) {
	
	$("div.more_details").hide();
	
	$(".tell_me_more a").bind("click", function() {	
												
		if ($(this).hasClass('down')) {	
			$('div.more_details', $(this).parent().parent()).show();
			$(this).html('Close');
			$(this).removeClass('down');
			$(this).addClass('up');
			
		} else {

			$('div.more_details', $(this).parent().parent()).hide();
			$(this).html('Tell me more');
			$(this).removeClass('up');
			$(this).addClass('down');
		}
		
		return false;
	});
	
	$(".conversion_link li").bind("click", function() {	
													
		var click_id = ($("a", $(this)).attr('href'));
		
		if ($(click_id + "_exp").hasClass('down')) {
			$('div.more_details', $(click_id + "_exp").parent().parent()).show();
			$(click_id + "_exp").html('Close');
			$(click_id + "_exp").removeClass('down');
			$(click_id + "_exp").addClass('up');
			
		}
		
	});
});

