  jQuery.noConflict();
     
     jQuery(document).ready(function($){
    function select()
{
    $('div.r_right > div').removeClass('r_selected')
    $('div.r_right').find('div[rel=' + $(this).attr('rel') + ']').addClass('r_selected');
}

    $('#rotator').show();
   $('div.r_left').cycle({
    timeout: 10000,
    fx:    'fade',
    sync:   0,
    delay: 0,
   // after:select,
    cleartype:1,
    pause:0
});
 $('div.r_right').cycle({
    timeout: 10000,
    fx:    'fade',
    sync:   0,
    delay: 0,
   // after:select,
    cleartype:1,
    pause:0
});
// $('div.scroll').cycle({
//    timeout: 5000,
//    fx:    'scrollDown',
//    sync:   1,
//    delay: -1000,
//    after:select,
//    cleartype:1,
//    pause:0
//});
});
