$(document).ready(function() {
	var NavHeight = jQuery('.MainNav').height();
	jQuery('.Header').height(NavHeight -2);
	
	
	jQuery('.choices_pod .choices_text').each(function(index) {
    	jQuery(this).children('p').wrapAll('<div class="text_container">');
  	});
  	
  	jQuery('.choices_pod .choices_text .text_container').hide();
		
	jQuery(".choices_pod .choices_text .image_container").hover(
		  function () {
		    jQuery(this).parent().children('.text_container').delay(400).slideDown('slow', function() {
		    	
  			});
		  },
		  function () {
		    jQuery(this).parent().children('.text_container').slideUp('slow', function() {
		    	
  			});
		  }
	);
	
	jQuery(".choices_pod .choices_text .text_container").hover(
		  function () {
		    jQuery(this).show();
		  },
		  function () {
		    jQuery(this).hide();
		  }
	);
	
	
	
	jQuery('.choices_pod2 .choices_text').each(function(index) {
    	jQuery(this).children('p').wrapAll('<div class="text_container">');
  	});
  	
  	jQuery('.choices_pod2 .choices_text .text_container').hide();
		
	jQuery(".choices_pod2 .choices_text .image_container").hover(
		  function () {
		    jQuery(this).parent().children('.text_container').delay(200).show();
		  },
		  function () {
		    jQuery(this).parent().children('.text_container').hide();
		  }
	);
		
});
