$(document).ready(function(){
   $('.careers_title').click(function(){
	  
	   var baseUrl = $('#baseUrl').val();
	 
	   $(this).next('div').toggle();
	   $(this).find('.arrow').attr('src', baseUrl +'/images/other/down.gif');
	   
	   $('.careers .careers_title').each(function(){
			$(this).removeClass("careers_title_active");
		})
	    $(this).addClass('careers_title_active');
	   
	   if ($(this).next('div').is(':visible')){
		   
		   $(this).find('.arrow').attr('src',baseUrl + '/images/other/up.gif');
	   }   else {
		   
		   $(this).find('.arrow').attr('src',baseUrl + '/images/other/down.gif');
	   }   
	  /* 
	  if ($(this).hasClass('careers_title_active')){
		  
		   $(this).find('.arrow').attr('src',baseUrl + '/images/other/up.jpg');
	   }	else {
		   
		   $(this).find('.arrow').attr('src', baseUrl +'/images/other/down.jpg');
	   } */ 
   }) 
});
