	var $j = jQuery.noConflict();
	
	function view(number){
		$j('#pro_'+number).slideDown('slow');
		return false;
	}
	$j(document).ready(function(){
    if($j('#staffbox').children('h3').text() == ''){
        $j('#staffbox').hide();
    }else{
      if ($j('#pro_1').text() != '') {
        $j('#pro_1').before("<b><a onclick=\"view(1)\" href=\"#\">View work experience</a></b>");
        $j('#pro_2').before("<b><a onclick=\"view(2)\" href=\"#\">View work experience</a></b>");
        $j('#pro_3').before("<b><a onclick=\"view(3)\" href=\"#\">View work experience</a></b>");
      }
      $j('#pro_1').hide('slow');
      $j('#pro_2').hide('slow');
      $j('#pro_3').hide('slow');
		}
	});
  
	function trim(str, chars) {
		return ltrim(rtrim(str, chars), chars);
	}
