$(function () {

    var $content = $('DIV#content');
    if ($content.height() < 1500) {
        $('DIV#props_by_town').height(400);
        }

    // Property Details Images
    $('a.lightbox').lightBox();
    });

function show_hide(id,id2) {
	document.getElementById(id).style.display = "block";
	document.getElementById(id2).style.display = "none";
} 

