$(document).ready(function(){
			//Examples of how to assign the ColorBox event to elements
		
			$(".initial_meeting").colorbox({inline:true, href:"#initial_meeting"});
			$(".resources").colorbox({inline:true, href:"#resources"});
			$(".agree_scope").colorbox({inline:true, href:"#agree_scope"});
			$(".mobilisation").colorbox({inline:true, href:"#mobilisation"});
			$(".post_contact").colorbox({inline:true, href:"#post_contact"});
			$(".completion").colorbox({inline:true, href:"#completion"});
			$(".review").colorbox({inline:true, href:"#review"});
			
			//Example of preserving a JavaScript event for inline calls.
			$("#click").click(function(){ 
				$('#click').css({"background-color":"#f00", "color":"#fff", "cursor":"inherit"}).text("Open this window again and this message will still be here.");
				return false;
			});
			
			
			$(document).bind('cbox_load', function(){
				 $('.cogs').stop().animate({ opacity: 0.5 }, 200);
			});
			
			$(document).bind('cbox_closed', function(){
				$('.cogs').stop().animate({ opacity: 1 }, 200);
			});
			
			$('#colorbox').click(function() {
				$.fn.colorbox.close()
				});
			
			
		});


