$(document).ready(function ready()
{
	if (!$('#intro-text').length)
		{return false;}
	
	var intro_text = $('#intro-text');
	var temp_offer = $('#temp-offer');
	
	// Match the height of intro-text and temp-offer
	var match_intro_height = function match_intro_height()
	{
		var match_height = 0;
		var match_height_objects = [intro_text, temp_offer];
		
		// Check heights
		$(match_height_objects).each(function match_intro_check()
		{
			var this_height = $(this).height();
			
			if (this_height > match_height)
				{match_height = this_height;}
		});
		
		// Set heights
		$(match_height_objects).each(function match_intro_set()
		{
			$(this).height(match_height);
		});
	};
	
	if ($('#temp-offer').length)
		{match_intro_height();}
});
