// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

function popup(url,w,h){
	popupWin=window.open(url,"Cora Imobiliare","width="+w+",height="+h+",location=no,menubar=no,toolbar=no,resizable=no,status=yes");
	popupWin.focus();
}

function scrollPageTo(a) {
	new Effect.ScrollTo(a, {duration: 0.9});
}

function setupToolTips() {
  $$(".help").each(function(input) {
  	new Tooltip(input, {
      backgroundColor: "#000", 
  	  borderColor: "#333",
  	  textColor: "#39F", 
  	  textShadowColor: "#000",
  	  opacity: .9
  	});
  }); 
}

function setRating(a) {	
	(function() { $('rating_label_' + a).innerHTML = '<img src="/images/icons/indicator.gif" />'; }).delay(0);
	(function() { $('rating_label_' + a).innerHTML = '<img src="/images/icons/tick_vsmall.gif" /> Salvat'; }).delay(2);
	(function() { $('rating_label_' + a).innerHTML = 'Nota ta'; }).delay(4);
}

telChecker=true;
function rotateTel() {
  if (document.getElementById && document.getElementById("tel")) {
    var _7 = document.getElementById("tel");
    if (_7.innerHTML == "0762 104 878" || _7.innerHTML == "SUNATI ACUM"){
      if (telChecker) {
        _7.innerHTML="0762 104 878";
        telChecker=false;
        setTimeout("rotateTel()",5000);
      } else {
        _7.innerHTML="SUNATI ACUM";
        telChecker=true;
        setTimeout("rotateTel()",3000);
      }
    }
  }
}

setTimeout("rotateTel();",2000);