// JavaScript Document
 $(function(){
   $('.getjob span.job_top').click(function(){
		 if($(this).next().next().css('display')=="none"){
			 $('.getjob span.job_bottom').stop(true,true).fadeOut('slow');
			 $(this).next().next().stop(true,true).fadeIn('slow');
		 }else{
			 $(this).next().next().stop(true,true).fadeOut('slow');
		 }
	  }
   )
   
 }
)
$(function(){
   $('#scope #click_open').click(function(){
		$(this).parent().find('span:eq(0)').stop(true,true).fadeIn('slow');
		$(this).css("display","none");
		$('#scope #click_close').css("display","");
	  }
	)
   $('#scope #click_close').click(function(){
		$(this).parent().stop(true,true).fadeOut('slow');
		$(this).css("display","none");
		$('#scope #click_open').css("display","");
	  }
	)
}
)
