PHP include - jQuery execution does not work

PHP include - jQuery execution does not work

Hi,

I've noticed after some code investigation that I cannot execute jQuery within 'included' php sites. The structure looks like the following:

index.php:
-----------

<html>
    <head>
        <script here I load all jQuery stuff />
    </head>
    <body>
        <div>
            This is on the index.php and jquery works
        </div>
        <div>
            <?php include("siteToBeIncluded.php"); ?>
        </div>
    </body>
</html>


siteToBeIncluded.php:
-------------------------
<p>This is included and jQuery (and jQueryUI) does not work here!</p>


If anyone got ideas, please let me know.

Best regards,
Patrick