Jquery Conflict

how i can use ajax validation yii with giix and in the same project jquery prettyphohto and jquerythemepunch revolution without present conflict, i try to use noconflict but im not expert with jquery and maybe i dont use it in a correct form, i have to use all scripts in inclusion.txt(attachment) Somebody know a possible solution for this conflict? excuse me for my poor english but is not my mothertoung.

thanks,

Intenta usar la librería jquery que viene incluida en yii.

tendrías que sustituir el siguiente código


    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>


    <script type="text/javascript">

    if (typeof jQuery == 'undefined') {

        document.write('<script src="<?php echo Yii::app()->baseUrl.'js/jquery.min.js'?>"<\/script>');

    }

    </script>

por


<?php Yii::app()->clientScript->registerCoreScript('jquery'); ?>