// JavaScript Document

$(document).ready(
	function()
	{
		if($('.villasList').length == 1)
		{
			$('.villaListItem').each(
				function()
				{
					var maxHeight = 0;
					$(this).find('div').each(
						function()
						{
							$(this).css('height','auto');
							
							if($(this).height() > maxHeight)
							{
								maxHeight = $(this).height();
							}
						}
					);
					
					if(window.isIE == true || navigator.appName == 'Opera')
					{
						$(this).css('height',(maxHeight - 4) +'px');
					}
					else
					{
						$(this).css('height',(maxHeight - 9) +'px');
					}
					
					$(this).find('div').each(
						function()
						{
							if($(this).height() != maxHeight)
							{
								$(this).height(maxHeight);
							}
						}
					);
					
				}
			);
			
			$('.villaListItemLight').each(
				function()
				{
					var maxHeight = 0;
					$(this).find('div').each(
						function()
						{
							$(this).css('height','auto');
							
							if($(this).height() > maxHeight)
							{
								maxHeight = $(this).height();
							}
						}
					);
					
					if(window.isIE == true)
					{
						$(this).css('height',(maxHeight + 15) +'px');
					}
					else
					{
						$(this).css('height',(maxHeight + 10) +'px');
					}
					
					$(this).find('div').each(
						function()
						{
							if($(this).height() != maxHeight)
							{
								$(this).height(maxHeight);
							}
						}
					);
					
				}
			);
			
		}
	}
);
