javascript doesn't execute on div loaded with ajax ! hlp plz !

javascript doesn't execute on div loaded with ajax ! hlp plz !

I have a page being generated with PHP, it includes a DIV who's content gets swapped with ajax. the new content contains the following function call PHP echo'd inside the parent DIV.
In this div I have two slider on the homepage.(index)

The sliders works when the content of the page is loaded directly, but not when it's been swapped there with ajax, while jquery scripts are already stored in the "head".

What I'm trying to do is load an external html file and have the Javascript that is embedded execute.
This seems to be a problem related to the code added with ajax , because before i have this bug the ajax load doesn't worck in the first place so i fixed the problem with :
  1. <script type="text/javascript">
     $.ajaxSetup({
        dataType: 'html'
    });
    </script>



then the ajax load work . but it seems that i have more trouble ! :/

here are the functions:
  1. <script type="text/javascript">
    $(document).ready(function(){

        $(".meny a").click(function(){
            page=$(this).attr("href");
            $.ajax({
                url: "includes/"+page,
                cache:false,
                success:function(html){
                    afficher(html);
                },
               
                error:function(XMLHttpRequest,textStatus,errorThrown){
                    alert(testStatus);
                }
            })

            return false;
        });
    });

    function afficher(data){
        $("#main").fadeOut(500,function(){
        $("#main").empty();
        $("#main").append(data);
        $("#main").fadeIn(1000);
        })
        }
    </script>




























the parent DIV in the main page
  1.         <div id="main" class="wrapper clearfix">
            <?php
            $_GET['p']="index";
         if(isset($_GET['p']) && preg_match("/^[a-z0-9]+$/i",$_GET['p'])){
            $p=strtolower($_GET['p']);
            if(file_exists("includes/$p.html")){
                include "includes/$p.html";
            }
            else{
                include "includes/404.html";
            }
        }
        else{
            include "includes/404.html";
        }
    ?>
                   
     </div>

















the menu navigation
  1. <div class="meny"> <ul> <li><a class="rotated_link" href="index.html">Accueil</a></li> <li><a class="rotated_link" href="profile.html">profil</a></li> <li><a class="rotated_link" href="">blog</a></li> <li><a class="rotated_link" href="">portfolio</a></li> <li><a class="rotated_link" href="">services et procédure</a></li> <li><a class="rotated_link" href="">contact </a></li> </ul> <span class="logo3" style="margin-top:400px;"><img src="img/LOGO2.png" /></span> </div>
to see the demo of the page ===> http://www.facetrolls.com/kj_v1.0/index.php
i try many somme solutions like ( .live() or  .on() ...)
and i make sure the probleme wasen wasn't from from the plugin with a small testing ..
 any way the library used : http://code.jquery.com/jquery-1.7.1.min.js
Javascript folder contains:
        <script type="text/javascript" src="js/libs/jquery.mousewheel.js"></script>
        <script type="text/javascript" src="js/libs/jquery.ui.totop.js"></script>
        <script type="text/javascript" src="js/libs/jquery.colorbox-min.js"></script>
        <script type="text/javascript" src="js/libs/jquery.jscrollpane.min.js"></script>
        <script type="text/javascript" src="js/libs/jquery.scrollTo-min.js"></script>
        <script type="text/javascript" src="js/libs/jquery.easing.1.3.js"></script>
        <script src="js/libs/modernizr-2.5.3-respond-1.1.0.min.js"></script>
        <script type="text/javascript" src="js/libs/modernizr.custom.79639.js"></script>
        <script src="js/libs/plugins.js"></script>
        <script type="text/javascript" src="js/libs/jquery.cycle.js"></script>
        <script type="text/javascript" src="js/libs/jquery.tipTip.minified.js"></script>
        <script type="text/javascript" src="js/libs/jquery.bxSlider.min.js"></script>
        <script type="text/javascript" src="js/libs/jquery.nivo.slider.pack.js"></script>

I've spent so long trying to fixe this bug but i have no idea ! please someone help me !

Thanks for your help!