    jQuery.noConflict();
    jQuery(document).ready(function () {
        jQuery('#slideshow').after('<div id="nav" class="nav">').cycle({ fx: 'fade', timeout: 7000, speed: 1500, pager: '#nav' });
        jQuery('#slideshow img').click(function () {
            document.location.href = jQuery(this).attr('alt');
        }).css('cursor', 'pointer');
    });
