	jQuery(window).ready(function(e) {
  		jQuery("#progress_bar").ajaxStart(showBar);
  		jQuery("#progress_bar").ajaxStop(hideBar);
  	})
  					
  	function fillSelectTargetWindow(e, target) {
	   	jQuery(target).load(e.href);
  	}
	
  	function showBar() {
  		jQuery("#progress_bar").fadeIn('slow');
  	}
  			
  	function hideBar() {
  		jQuery("#progress_bar").fadeOut('slow');
  	}
  	
  	function clearActiveLeftSubMenu(target) {
  		jQuery(target).parent().parent().find('a.active').removeClass('active');
  	}
  	
  	function addActive(target) {
  		jQuery(target).addClass('active');
  	}
  	
  	function ShowHideProgrammDesc(e) {
		el = $(e.hash);
		if(el.is(':hidden')) {
			el.fadeIn();
		} else {
			el.fadeOut();
		}
		return false;
	}