$('document').ready(function(){
    $("#MySelect").selectdecorator({
       DIVClass : "selectholder"
    });
    $('#nav').droppy();
    $('.logo').click(function(){ document.location='/';});
    $("#login").blur(function() {
       if (this.value == '') { this.value = 'Имя'; }
    });
    $("#login").focus(function() {
       if (this.value == 'Имя') { this.value = ''; }
    });
    $("#password").blur(function() {
       if (this.value == '') { this.value = '********'; }
    });
    $("#password").focus(function() {
       if (this.value == '********') { this.value = ''; }
    });
    $('#tlSearch').click(function(e) {
        $('#search_dialog').dialog({
                                    title: 'Поиск по сайту',
                                    position: [e.pageX+10,e.pageY],
                                    show: 'slide',
                                    draggable: false,
                                    resizable: false,
                                    modal: true,
                                    height: 80,
                                    width: 355
                                  });
        $('#query_input').focus();
    });
    $('#hostracker').mouseover(function() {
        this.href="http://host-tracker.com/ru/web-site-uptime-monitor/4917442/lvuc/";
    });
});
