$(document).ready(function(){
	
	 $('.toggle').each(function(i,elm) {
		 $(this).focus(function(event){
			 if($(this).val() == $(this).attr('title')){
				 $(this).val('');
			 }
		 }).blur(function(event){
			 if($(this).val() == ''){
				 $(this).val($(this).attr('title'));
			 }
		 });
    });
	 
	$('a[rel="external"]').each(function(){
		if($(this).attr('href') != '' && $(this).attr('href') != '#'){
			$(this).attr('target','_blank');
		}
	});
	 
	$("table.browse tr").each(function(el){
		var $this = $(this);
		$this.children('td').click(function(e){
			var href = $this.attr('title');
			window.location = href;
		});
	});
	
	$("#q").suggest(APP_PATH+"/cauta/suggest",{
		 onSelect: function() {
			return false;
		}
	});		
});

function show_phones(id_agent,id_imob){
	$.post(APP_PATH+'/anunturi/get_phone_numbers',{'id_agent':id_agent,'id_imob':id_imob}, function(data) {
		$('.phones').hide();
		$('.phones-real').show();
		$('.inside-holder').html(data);
	});
	
	return false;
}
