$(document).ready(function(){

     $("#navigation li").hover(function(){
         $(this).find("ul:first").show();

         },function(){
         $(this).find("ul:first").hide();
     });



    $(function() {

        $('#slideshow').cycle({
            fx:      'scrollHorz',
            timeout:  7000,
            pause:   1,
            speed: 2000,
            prev:    '.prev',
            next:    '.next',
            pager:   '#pager',
            pagerAnchorBuilder: pagerFactory
        });

        function pagerFactory(idx, slide) {
            var s = idx > 10 ? ' style="display:none"' : '';
            return '<a'+s+'>'+(idx+1)+'</a>';
        };

    });



    $(".product_gallery li .pro").hover(function() {
        jQuery(this).animate({top: "-10px"}, 250);
        }, function(){
        jQuery(this).stop(true, true).animate({top: "0px"}, 250);
    });

});
