/*
 * Animates the movements of the middle col on the index page
 */
    $(document).ready(function(){

 	 $(".left_container2").animate(
												{marginLeft:'0'}, 
												2000, 
												'easeOutQuad',
												function(){
     															$(".middle_container2").animate(
																											{marginLeft:'0'}, 
																											1000, 
																											'easeOutQuad');
												});



  	  });

