$(document).ready(function(){
	$(".addOn").hide();
	$(".addOnTitle").hide();
	$(".readMore a").click(function(event){
		
		$(this).toggle();
		$(this).parents("").next(".readLess").toggle();
		$(this).parents("").prev(".addOn").toggle(50);
		event.preventDefault();
		$(this).parents(".switch .readLess").toggle();
		// Stop the link click from doing its normal thing
		
	});
	$(".readLess a").click(function(event){
		
		//$(this).toggle();
		$(this).parents("").prev(".readMore").toggle();
		$(this).parents("").prev(".addOn").toggle(50);
		event.preventDefault();
		//$(this).parents(".switch .readLess").toggle();
		//$(this).parents(".switch .readMore").toggle();
		// Stop the link click from doing its normal thing
		
	});
	$(".activeTitle a").click(function(event){
		$(this).parents("").next(".addOnTitle").toggle(50);
		//$("readMore").toggle();
		// Stop the link click from doing its normal thing
		event.preventDefault();
		
	});
});