function photoView() {
    showPhoto();
    hideDetails();
    hideOpenHouse();
    hideCommunity();
}
function showPhoto() {
	try{
	    displayObject('standard','block');
	    setFgColor('pv1','#ffffff');
	    setBgColor('pv0','#006699');
	    setBgColor('pv1','#006699');
	    setBgColor('pv2','#006699');
	    setBgColor('pv3','#006699');
	    setBgColor('pv4','#006699');
	    setBgColor('pv5','#006699');
	    setBorderTop('b0','solid #000000 0px');
	    setSource('pp0','/default/images/detail/propertydetail2_12.gif');
	    setSource('pp1','/default/images/detail/propertydetail2_14.gif');
	} catch(Ex){

	}
}

function hidePhoto() {
	try{
		displayObject('standard','none');
		    setFgColor('pv1','#666666');
		    setBgColor('pv0','#eeeee0');
		    setBgColor('pv1','#eeeee0');
		    setBgColor('pv2','#eeeee0');
		    setBgColor('pv3','#eeeee0');
		    setBgColor('pv4','#eeeee0');
		    setBgColor('pv5','#eeeee0');
		    setBorderTop('b0','solid #000000 1px');
		    setSource('pp0','/default/images/detail/propertydetail2_12b.gif');
		    setSource('pp1','/default/images/detail/propertydetail2_14b.gif');
	} catch(Ex){

	}
}

function detailView() {
    showDetails();
    hideOpenHouse();
    hideCommunity();
    hidePhoto();
        
}

function showDetails() { }

function hideDetails() { }

function openHouseView() {
    showOpenHouse();
    hidePhoto();
    hideDetails();
    hideCommunity();
}

function showOpenHouse() { }

function hideOpenHouse() { }

function communityView() {

    showCommunity();
    hideOpenHouse();
    hidePhoto();
    hideDetails();
}

function showCommunity() {}

function hideCommunity() {alert("call"); }
