Including Jqyery4Php In Yii

How can I include jquery4php(http://jquery4php.sourceforge.net/) in yii? I have added following lines in my layout/main.php


<?php

Yii::import('application.extensions.lib.*');

require_once('YepSua/Labs/RIA/jQuery4PHP/YsJQueryAutoloader.php');

YsJQueryAutoloader::register();

?>

But when I use


<?php

//For use the component

YsJQuery::useComponent(YsJQueryConstant::COMPONENT_JQPLOT);

in other file then it gives error include(YsJQuery.php): failed to open stream: No such file or directory

Has anyone used jquery4php before?

Instead of:


require_once('YepSua/Labs/RIA/jQuery4PHP/YsJQueryAutoloader.php');

use:


Yii::import('YepSua/Labs/RIA/jQuery4PHP/YsJQueryAutoloader.php');