<!--
jQuery.noConflict();

jQuery(document).ready(function() {
    jQuery('#slide_show').cycle({
        fx: 'fade', 
        random: true, 
        speed:1000,
        timeout:3000,
        next:'#slide_show_container'
    });

    jQuery('#slide_show_container').hover(
        function() {jQuery('#slide_show').cycle('pause');},
        function() {jQuery('#slide_show').cycle('resume');} 
    );

    jQuery('#slide_show').show();

    if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)) || (navigator.userAgent.match(/iPad/i))) {
       jQuery("#ajaxmenu>ul>li>a").live("click", function(e) {
            e.preventDefault();

        });

   }

});
-->
