var temp=navigator.appVersion.match(/\((.+)\)/i);
var params=temp[1].split(/;\s*/); var params1=params[1].split(/\s/);
if (params1[1]<=6)  var IE6=true; else var IE6=false;

var field_value="Поиск по сайту...";
var s=document.getElementById("search_text");
s.value=field_value;
s.style.color="#666";

function focus_text(t){
if(t==field_value) 
{s.value="";s.style.color="#000";}
}

function blur_text(t){
if(t=='') {s.style.color="#666";s.value=field_value;}
}


if(document.getElementById("scrollable"))
      $(function() {
        $("#scrollable").scrollable({horizontal:true});
      });
      
function curtain(){
var elem=document.getElementById("curtain").style;
var form=document.getElementById("curtain_content").style;
//elem.display="block";

elem.width="100%";
elem.background="#000";
//elem.position="absolute";
elem.opacity="0.6";
elem.filter='alpha(opacity=60)';
elem.zIndex="98";

$("#curtain").fadeIn("slow");
$("#curtain_content").fadeIn("slow");

//form.display="block";
form.position="absolute";
form.zIndex="99";
}

window.onload=function (){
height1=document.documentElement.clientHeight;
height2=document.getElementById("site").clientHeight;
height=(height1>height2)?height1:height2;
document.getElementById("curtain").style.height=height+"px";
if(!IE6) 
{
    document.getElementById("curtain").style.position="fixed";
}
else
{
    document.getElementById("curtain_top").style.background="none";
    document.getElementById("curtain_top").style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/design/images/curtain_top.png',sizingMethod='crop')";
    document.getElementById("curtain_bottom").style.background="none";
    document.getElementById("curtain_bottom").style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/design/images/curtain_bottom.png',sizingMethod='crop')";
}
}

function exit_curtain(){
document.getElementById("curtain").style.display="none";
document.getElementById("curtain_content").style.display="none";
}

/*recalls*/
if(document.getElementById("quotes"))
$(document).ready(function(){
    /*conf*/
    var time_out=5;
    var speed=5;
    var i=0;
    
    $("#quotes li").hide();
    $("#quotes li:first").show();
    
    count_li=$("#quotes li").length;
    
   
    function show_splash(){
        var elem=document.getElementById("quotes").getElementsByTagName("li")[i];
        i++;
        if(i>=count_li) i=0;
        var after_elem=document.getElementById("quotes").getElementsByTagName("li")[i];
        
        $(elem).fadeOut(100*speed);
        $(after_elem).fadeIn(100*speed);
        var id_q=$(after_elem).attr("id").substr(7);
        $("#recalls .toall a:first").attr("href","recalls/"+id_q+"/");
        
        var timerID=setTimeout(show_splash,1000*time_out);
    }
    
    var timerID=setTimeout(show_splash,1000*time_out);
});