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



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

	  $(".left_container2").css({'margin-left' : '0'});
	    }, function () {
	      var cssObj = {
	        'margin-left' : '0',

	      }
	      $(".left_container2").css(cssObj);
	    });