$(document).ready(function() {

        $(function() {   
            $('#promoSlideshow').cycle({
                fx:      'fade',
                speed:    1500, 
                timeout:  7000,
                pause:    1,
                pager:   '#nav1',
                cleartype:  true,
                cleartypeNoBg:  true
            }); 
            $('#newsSlideshow').cycle({
                fx:      'scrollHorz',
                speed:    500, 
                timeout:  6000,
                pause:    1,
                prev:    '#prev',
                next:    '#next',
                pager:   '#nav2',
                cleartype:  true,
                cleartypeNoBg:  true
            });                                                          
        });   

        /*MENU SEPARATORS*/
        $('#menu li a.active').parent().addClass('noseparator');
        $('#menu li a.active').parent().next().addClass('noseparator');
        
        /*FAQ*/
        $('.productInfo').hide();                
        $('a.productTitle').click(function() {
                $(this).next('.productInfo').toggle('fast');
                $(this).toggleClass('opened');
                return false;
        });           
        $('a.productTitle').mouseover(function() {
                $('.productImage').addClass('hide');
                $(this).prev('.productImage').removeClass('hide');
                return false;
        });         
});

