//Run the main slider plugin -->
var $j = jQuery.noConflict();
$j(document).ready(function() {
    $j('#featured').orbit({
        animation : 'fade', // fade, horizontal-slide, vertical-slide,
        // horizontal-push
        timer : true, // true or false to have the timer
        advanceSpeed: 5000,
        pauseOnHover : false, // if you hover pauses the slider
        directionalNav : false, // manual advancing directional navs
        captions : true, // do you want captions?
        bullets : true
    // true or false to activate the bullet
    // navigation
    });
    $j('.orbit-wrapper').attr('style','width: 345px; height: 245px;');
    $j('#featured').attr('style','width: 345px; height: 245px;');
});

