$(document).ready(function(){
			// $("#p1-expandable-body").hide();
			$("#p2-expandable-body").hide();
			$("#p3-expandable-body").hide();
			$("#p4-expandable-body").hide();			

			var imgMinus = $("#p1-expand-body img").attr('src');			
			var imgPlus = $("#p2-expand-body img").attr('src');			

			$("#p1-expand-body").click(function(e){
				e.preventDefault();
				$("#p1-expandable-body").slideToggle(300);
				
				var imgEl = $("#p1-expand-body img");
				var imgName = imgEl.attr('src');
				if (imgName.indexOf('minus') > 0) {
					imgEl.attr('src', imgPlus);
					$("#p1-title").css('color', '#1f90e7');
				} 
				else {
					imgEl.attr('src', imgMinus);
					$("#p1-title").css('color', '#4f8b9c');
				}				
			});
			
			$("#p2-expand-body").click(function(e){
				e.preventDefault();
				$("#p2-expandable-body").slideToggle(300);

				var imgEl = $("#p2-expand-body img");
				var imgName = imgEl.attr('src');

				if (imgName.indexOf('minus') > 0) {
					imgEl.attr('src', imgPlus);
					$("#p2-title").css('color', '#1f90e7');
				} 
				else {
					imgEl.attr('src', imgMinus);
					$("#p2-title").css('color', '#4f8b9c');
				}
			});
			
			$("#p3-expand-body").click(function(e){
				e.preventDefault();
				$("#p3-expandable-body").slideToggle(300);

				var imgEl = $("#p3-expand-body img");
				var imgName = imgEl.attr('src');

				if (imgName.indexOf('minus') > 0) {
					imgEl.attr('src', imgPlus);
					$("#p3-title").css('color', '#1f90e7');
				} 
				else {
					imgEl.attr('src', imgMinus);
					$("#p3-title").css('color', '#4f8b9c');
				}
			});

			$("#p4-expand-body").click(function(e){
				e.preventDefault();
				$("#p4-expandable-body").slideToggle(300);

				var imgEl = $("#p4-expand-body img");
				var imgName = imgEl.attr('src');

				if (imgName.indexOf('minus') > 0) {
					imgEl.attr('src', imgPlus);
					$("#p4-title").css('color', '#1f90e7');
				} 
				else {
					imgEl.attr('src', imgMinus);
					$("#p4-title").css('color', '#4f8b9c');
				}
			});
			
		});
