
/*
 * ONLOAD EVENTS
 */
$(document).ready(function() {

	/* PROGRESS OVERLAY
		============================= */
	
	$('a#our-progress-link').click(function() {		
		var $this = $(this);	
		var $overlay = doOverlay(650,600,'#ffffff','40px');
		//get content
		$overlay.load($this.attr('href') + ' #our-progress', function() {
			handleProgressOverlay();
			//modify src
			$('#our-progress img').each(function() {
				var _src = $(this).attr('src');
				if (_src.indexOf('/our-commitments') !== -1) {
					_src = _src.replace('/our-commitments','');
				} else {
					_src = '../' + _src
				}
				$(this).attr('src',_src);
			});
			$('#our-progress').hide().fadeIn()
		});		
		return false;
	});
	
});





