

function load_monster_profile_behaviors(context) {
  $j.log('loading MONSTER PROFILE behaviors in behaviors/monster_profile.js')
 

  $j('div#nav.profile_monster_nav ul#navbar_tertiary_nav li#profile_monster_nav_work_experience', context).click(function() {
	  $j('div#nav.profile_monster_nav ul#navbar_tertiary_nav li', context).each(function() {
	    $j(this).removeClass("active");
	  });
    $j(this).addClass("active");
		$j('div#profile_monster_work_experience').show(); 
		$j('div#profile_monster_education_experience').hide();
    return false;
  });

  $j('div#nav.profile_monster_nav ul#navbar_tertiary_nav li#profile_monster_nav_education_experience', context).click(function() {
	  $j('div#nav.profile_monster_nav ul#navbar_tertiary_nav li', context).each(function() {
	    $j(this).removeClass("active");
	  });
    $j(this).addClass("active");
		$j('div#profile_monster_work_experience').hide(); 
		$j('div#profile_monster_education_experience').show();
    return false;
  });

  $j('.toggle', context).click(function() {
		$j(this).parent('div').find(".more_info").toggleClass("hide");
		if ($j(this).parent('div').find(".more_info").hasClass("hide")){
			$j(this).removeClass("less");
			$j(this).addClass("more");
			$j(this).text("Expand to see all");
		} else {
			$j(this).addClass("less");
			$j(this).removeClass("more");
			$j(this).text("Hide");
		};
    return false;
  });

}


// ON LOAD

$j(function() {
  load_monster_profile_behaviors();
});
