function showImg(url, title, pid) {
	
	$('#property' + pid + ' .img0').src = url;
	
	//var __debug = 
	$('#property' + pid + ' .img0').fade();
	
	//$('.propertytitle').firstChild.nodeValue = title;
	
	
}

$.ready(function() {
	//if ($('.propertytitle').item(0)) $('.propertytitle').firstChild.nodeValue = $('.img0').title;

	if ($('.content img').item(0).src.indexOf('main_corners.png') > 0) {
		var fade = new Effect_CrossFade2($('.content img'));
		fade.random = true;
	//	fade.interval = 10;
		fade.start();
	}
});


function forsale(value) {
	if (value == 1) {
		$('.minmax').apply(function() {
			this.disabled = false;
			this.selectedIndex = 0;
		});	
	}
	else {
		$('.minmax').apply(function() {
			this.disabled = true;
			this.selectedIndex = 0;
		});
	}
}
