$(document).ready(function() {
		
		var $winHeight = $(window).height() - 70;
		
		$("img.first-image'").attr({ height: $winHeight });						
		$("img.second-image'").attr({  height: $winHeight  });	
		
		  // Delay 1 second...
		  $('.first-image').delay(2000,function(){

					$('.first-image').animate(
					                { opacity: 1 }, 5000);
					
					   // Then delay another 3 seconds...
				    $('.second-image').delay(8000,function(){
				      		// Change text color to blue
				      		$(".second-image").animate(
							                { opacity: 1 }, 10000);
				    });
	
					

		    });
		
			$(window).resize(function(){					
				
				var $winHeight = $(window).height() - 70;
				
				$("img.first-image'").attr({
							height: $winHeight
				});
						
				$("img.second-image'").attr({
							height: $winHeight
				});								
			
			
			});
		
		
		
});