// Fade In del Buscador por código	
$j(function(){

	$j('#buscador').find('.codigo label').live('click', function() {
		$j(this).parent().children('input').fadeIn();
	});

});


$j(function(){

	$j('#buscadorSmall').find('.codigo label').live('click', function() {
		$j(this).parent().children('input').fadeIn();
	});

});


// Imágenes Random
$j(function() {
	var randomImages = ['bg1','bg2', 'bg3', 'bg4', 'bg5'];
	var rndNum = Math.ceil(Math.random() * randomImages.length);
	$j('#searchImage').css({ background: 'url(http://static.zonaprop.com.ar/static/images/home/search-image/bg' + rndNum + '.png) left bottom no-repeat' });
});


function handleKeyPress(e,form){
	var key=e.keyCode || e.which;
	//key=13 represents ENTER
	if (key==13){
		$j("#searchById").click();
	}
}




