

//=============================================================
//=====   POSUN NA KOTVU
//=============================================================

	//-------------------------------------------------------------
	 function moveWindow (){ if ((window.location.hash != "#gbpost" 
                                && window.location.hash != "#diskuze"
                                && window.location.hash != "#odpoved_soutez")) window.location.hash="details";}
            // reseni anchoru pro komentare a akce
            $(document).ready(function() {
                $('.posts div.pager ul.yiiPager li a').each(function()
                    {
                        a = $(this).attr('href');
                        $(this).attr('href', a + "#diskuze");
                    });
                $('#element-article-grid div.pager ul.yiiPager li a').each(function()
                    {
                        a = $(this).attr('href');
                        $(this).attr('href', a + "#details");
                    });
                $('#element-event-grid div.pager ul.yiiPager li a').each(function()
                    {
                        a = $(this).attr('href');
                        $(this).attr('href', a + "#details");
                    });
            })
            

//=============================================================
//=====   OTEVIRANI EXTERNICH OKEN
//=============================================================            
            function externalLinks() { 
		if (!document.getElementsByTagName)
			return; var anchors = document.getElementsByTagName("a"); 
			for (var i=0; i<anchors.length; i++) { var anchor = anchors[i]; 
			if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "external") anchor.target = "_blank"; } 
			} 
            function checkBoxes(check, trida)
            {
                $('.'+trida).each(function(){
                    $(this).attr('checked', check);
                })
            }


          //=============================================================
          //=====   POTVRZENI FORMULARE
          //=============================================================            
            function submitform()
            {
                document.forms["myTipForm"].submit();
            }



            // aktivní prolink na celý box
            $(document).ready(function() {
                $('.around').click(function(){
                    $(this).find(".odkaz").each(function(){ a = ($(this).attr('href'))});
                    window.location = a;
                });
            });
            
       function updateCaptchas() {  
         $(document).ready(function() {
                $('#gb-add-comment').before('<input style=\"display:none\" type=\"checkbox\" name=\"GuestBookFormModel[nospam]\" value=\"1\" checked/>');
            });
        }                  
