/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


function toggle(id,linkid){    
    var obj = document.getElementById(id);    
    var link =document.getElementById(linkid);
   
    if(obj.style.display=='none'){
        
        link.className ="left_main_lnks_active";
        obj.style.display='';
    }else{
        link.className ="left_main_lnks_txt";
        obj.style.display='none';
    }
}

var imgfile;

function replaceImage() {
	

	if(imgfile.height==0 || imgfile.width==0){
		setInterval(replaceImage, 3000);
		return;
	}
	var width = imgfile.width;
	var height = imgfile.height;
	
	
	if(width>350)
		imgfile.width=350;
	if(height>233)
		imgfile.height=233;
	
	var imgchk = document.getElementById("imagediv");
	imgchk.innerHTML='<img src="' + imgfile.src+ '"  align="center" height="' + imgfile.height + '" width="' + imgfile.width + '"/>'

}

function resizeImg(imgurl){
	imgfile = new Image();
	imgfile.src = "http://pelicanproperties.com.au" + imgurl;
	replaceImage();
}
