        $(document).ready(function(){

//            $('a[rel^=sm]').click(function(e){
//                e.currentTarget.blur();
//                e.target.blur();
//                
//                $('div.submenu').hide();
//                
//                var tid = $(e.currentTarget).attr('rel');
//                $('#'+tid).show();
//            }); 

            $("a.fbox").fancybox();
    
            // ugly hack for top and left menu
            
            $('a[rel^=sm]').each(function(i, e){
                if(0 == document.location.pathname.indexOf( $(e).attr('href') ) ){
                   var tid = $(e).attr('rel');
                   $('#'+tid).show();
                }
            });
            
            var topitems = /contacts_programm|contacts_hotel|contacts_kuhnya|contacts_etno|contacts_theatre|contacts_objects|kontakty|kak_dobratsya|partners|fotogalereya|foto|3d_panoram|ceny|bron|afisha|specpredlozheniya|video|o_nas|legenda|vakansii|raspolozhenie|osnawenie|nomera|specpredlozheniya|secret/ ;
            
            $('ul.topmenu li').each(function(i, e1){
               $('a:first', e1).each(function(i, e2){         	   
            	   if(topitems.test($(e2).attr('href'))){ 
            		    $(e1).show();
            	   }
               });
            });
            $('ul.topmenu').show(); 

            $('ul.leftmenu li').each(function(i, e1){
                $('a:first', e1).each(function(i, e2){              
                    if(!topitems.test($(e2).attr('href'))){ 
                         $(e1).show();
                         
                         if( 0 != $('#sm1:visible').length && 800 > $('table.container2').height() ){
                            $('table.container2').height('800px');
                         }
                    }
                });
             });
             $('ul.leftmenu').show();               
        });

