// Depend on jQuery
jQuery.noConflict();
jQuery('.reflect').reflect();
jQuery('.btn').corner('6px');

jQuery(document).ready(function() {

        jQuery('#main-nav li').hover(
                function() {
                        jQuery(this).find('.sub-cats').stop().height('auto').css('opacity', '1').css('padding', '18px').animate({height: 'show', opacity: 'show'}, 'fast'); // the height('auto') and padding prevents the menu from memorizing an incorrect height-value forever when leaving the menu while the animation is running
                }, function() {
                        jQuery(this).find('.sub-cats').stop().animate({height: 'hide', opacity: 'hide'}, 'fast');
                }
        );

        jQuery('#search').autocomplete('modules/search-handler.php', {
                width: 260,
                selectFirst: false,
                dataType: "json"

                //formatItem: formatItem(data)

        });
        
        jQuery('.header .availability').simpletip({
                content: '<div class="availability-1 left"></div><b>Sofort lieferbar:</b> 2-5 Tage<br /><div class="availability-2 left"></div><b>Im Zulauf:</b> 5-10 Tage<br /><div class="availability-3 left"></div><b>L&auml;ngere Lieferzeit:</b> Ware zur Zeit vergriffen',
                fixed: false
        });

        jQuery('#search-products, #email-signup').hint();
        
        function formatItem(data) {
                return data.manufacturer + " &lt;" + data.name + "&gt";
        }
        
});
