// JavaScript Document

function setEqualHeight(columns)  
{  
	var h;

		h = (typeof window.innerHeight != 'undefined' ? window.innerHeight : document.documentElement.clientHeight) - 35;

    var tallestcolumn = h - 150;  
    columns.each(  
    function()  
    {  
        currentHeight = $(this).height();  
        if(currentHeight > tallestcolumn)  
        {  
            tallestcolumn  = currentHeight;  
        }  
    }  
                );
    columns.height(tallestcolumn);
	
	//alert("Tallest Column : " + tallestcolumn);
	//alert("Banner : " + bannerheight);
	//alert("Picture : " + ppheight);
}
  
