$(document).ready(function() {

$(".description").hide(); 
$("#Starter_Col").toggleClass("Expanded",true);
$("#Starter_Col .description").show(); 
   
  $(".info-col").click(function() {
	  $(this).toggleClass("Expanded",true);
	  $(this).siblings().toggleClass("Expanded",false);
	  $('.description').hide();
	  $('.Expanded .description').show();
  });
  
  
/*    $(".info-col a").click(function() {
	  var parent = $(this).parent();
	  parent.toggleClass("Expanded",true);
	  parent.siblings().toggleClass("Expanded",false);
  });*/
  
});
