           $(function(){
                $('.level1_list').hide();
                $('.level2_list').hide();
 
                $('.main_list>li:has(ul)')
                .click(function(event){
                    if (this == event.target) {
 
                        if ($(this).children().is(':hidden') )
                        {
                            $('.level2_list').hide();
                            $('.level1_list li').css('list-style-image','url(/project/titanium/img/arrow_plus.gif)');
                            $(this).children().show('medium');
                        }
 
                        else {$(this).children().hide('medium');};
                    }
                    return false
                });
 
                $('.level1_list>li:has(ul)')
                .click(function(event){
 
                    if (this == event.target) {
 
 
 
                        if ($(this).children().is(':hidden') )
                        {
                            $('.level2_list').not($(this)).hide("medium");
                            $('.level1_list li').css('list-style-image','url(/project/titanium/img/arrow_plus.gif)');
 
                            $(this).css('list-style-image','url(/project/titanium/img/arrow_minus.gif)');
                            $(this).children().show('medium');
 
                        }
 
                        else {
                            $(this).children().hide('medium');
                            $(this).css('list-style-image','url(/project/titanium/img/arrow_plus.gif)');
                        };
 
                    }
                    return false
                })
 
            });
 
           $(function(){
        	   
               $('.faq_content').hide();
               $('#faq_script span')
               .click(function(event){
                   if (this == event.target) {

                       if ($(this).parent().children().filter('p').is(':hidden') )
                       {
                           $(this).parent().addClass('faq_title_open');
                           $(this).parent().children().filter('p').show('slow');
                       }

                       else {
                           $(this).parent().removeClass('faq_title_open').addClass('faq_title_close');
                           $(this).parent().children().filter('p').hide('slow');};
                   }
                   return false
               });



           });           
           