/** * @author ALEXV
 */


(function($){
	$(function(){
		
		$(".filial-row").bind("mouseover",function(){
			$(this).removeClass('filial-row');
			$(this).toggleClass('filial-row-over');
		});
		
		$(".filial-row").bind("mouseout",function(){
			$(this).removeClass('filial-row-over');
            $(this).toggleClass('filial-row');
        });
		
		$(".org-row").bind("mouseover",function(){
            $(this).removeClass('org-row');
            $(this).toggleClass('org-row-over');
        });
        
        $(".org-row").bind("mouseout",function(){
            $(this).removeClass('org-row-over');
            $(this).toggleClass('org-row');
        });
        
        $("#cat-only-title").bind('click',function(){
        	//$(this).toggle(function(){$(this).html('1')},function(){$(this).html('2')});
        	$('.org-row p').toggle();
        });
	});
})(jQuery);
