 jQuery.noConflict();
 jQuery(document).ready(function() {
		
		  jQuery(".scrollable").scrollable();
          jQuery(".scrollablelogo").scrollable({ prev: '.prevlogo', next: '.nextlogo' });
        
          	jQuery('a.no-logOn').click(function() {
        	  
        	  jQuery("#loginform").slideToggle();
      		});

          
          
            jQuery(".main-menu-link").hover(
              function () {
                 jQuery(this).find('.submenu').css('display','block');
				 jQuery(this).css('backgroundColor','#797979');
				 jQuery(this).css('borderRadius','5px 5px 0 0');
				 jQuery(this).css('borderTop','3px solid #292929');
              },
              function () {
                jQuery(this).find('.submenu').css('display','none');
				jQuery(this).css('backgroundColor','transparent');
              }
            );


			/*jQuery("a[rel=photo]").fancybox({
                'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'titlePosition'	: 'over'
			});
			*/
            jQuery('.togglelink').click(function() {
            //jQuery(this).find('.toggletext').css('display','block');
            if(jQuery(this).parent().attr('class')=='toggleitem')
            {
				jQuery(this).parent().find(".toggletext").slideToggle();
		        jQuery(this).parent().addClass("toggleitemactive");
		        jQuery(this).parent().removeClass("toggleitem");

            }else
            {
				jQuery(this).parent().find(".toggletext").slideToggle();
	            jQuery(this).parent().addClass("toggleitem");
	            jQuery(this).parent().removeClass("toggleitemactive");
            }

              return false;
            });


            var word_list = [
                       {text: "��������", weight: 15 ,url: "/"},
                       {text: "�������������", weight: 9 ,url: "/"},
                       {text: "����������� �������", weight: 8 ,url: "/"},
                       {text: "���", weight: 22 ,url: "/"},
                       {text: "������", weight: 20 ,url: "/"},
                       {text: "�����", weight: 8 ,url: "/"},
                       {text: "�����", weight: 8 ,url: "/"},
                       {text: "������ ���", weight: 8 ,url: "/"},
                       {text: "������", weight: 8 ,url: "/"},
                       {text: "������������", weight: 8 ,url: "/"},
                       {text: "�����", weight: 9 ,url: "/"},
                       {text: "�������", weight: 14 ,url: "/"}
                             ];


   //     jQuery("#tagcloud").jQCloud(word_list);


});
        
        
function postComment(id)
{
	jQuery("#"+id).slideToggle();
}
