// Background color animation
(function ($) {
  Drupal.behaviors.portfolio_layout = {
    attach: function(){
	$('#header').css ('opacity', 0);
	$('.title').css ('opacity', 0);
	$('#header').css ('top', -50);
	
$(document).ready(function(){
$('#header').animate({
   top:0,
    opacity: 1.0,
  
  }, 3000 );

$('.title').animate({
   
    opacity: 1.0,
  
  }, 5000 );
				

	
				});
	


}
}
})(jQuery);

