jQuery.noConflict();

jQuery(document).ready(function($){   
    $('.img_wrap:even').each(function(index){
        $(this).cjSimpleSlideShow({
            centerImage: true
        });
    });
    $('.img_wrap:odd').each(function(index){
        $(this).cjSimpleSlideShow({
            delay: 6000,
            centerImage: true
        });
    });
});

