var $j = jQuery.noConflict();
$j(document).ready(function() {
    $j('.slideshow').cycle({
        fx: 'fade',
        speed:   5000,
        cleartypeNoBg: false,
        timeout: 10,
        pause:   1
    });

    var parent = $j('#ja-cssmenu li a.starter_active').text();
    $j('#heading-sub h3').html(parent);
    var iwidth = $j('#home_slider .slide img:eq(0)').attr('width');
    $j('#home_slider').css('width', iwidth);
    $j("ul#border_foot li:last-child").addClass('bor_none');

    $j(function() {
        var zIndexNumber = 1000;
        $j('li').each(function() {
            $j(this).css('zIndex', zIndexNumber);
            zIndexNumber -= 10;
        });
    });

});

