﻿// JScript File

$(document).ready(function () 
{
    
});

function internetExplorerScrollPosition()
{
    if ( $.browser['msie'] && $.browser.version == '6.0' )
    {
        var newHeight = $('.comparative .right_box').height() + 17;
        $('.comparative .right_box').height( newHeight );
    }
    else
    {
        if ( !$.browser['msie'] )
        {
            var newHeight = $('.property_img').height() + 4;
            $('.property_img').height( newHeight );
        }
            
        if ( !$.browser['mozilla'] )
        {
            newHeight = $('.comparative .right_box').height() + 12;
            $('.comparative .right_box').height( newHeight );
        }
        else
        {
            newHeight = $('.comparative .right_box').height() + 2;
            $('.comparative .right_box').height( newHeight );
        }
    }
}

setTimeout(function () { internetExplorerScrollPosition(); }, 300);