$(document).ready(
    function()
    {
        $('.product_moreinfo').click(
            function(){
                if ($('.detail', $(this).parent()).is(':visible')) {
                    $(this).css('background-image', 'url("' + rootUrl + 'public/images/default/modules/content/button.png")');
                    $(this).text('Meer informatie');
                    $('.detail', $(this).parent()).slideUp('normal');
                    
                } else {
                    $(this).css('background-image', 'url("' + rootUrl + 'public/images/default/modules/content/buttonUp.png")');
                    $(this).text('Verberg informatie');
                    $('.detail', $(this).parent()).slideDown('normal');
                }
            }
        );
        
        $('.product .photos .thumbs .thumb').hover(
            function()
            {
                $('.large', $(this).parent().parent()).css('background-image', $(this).css('background-image').replace('s.jpg', '.jpg'));
            }
        );
        
        $('.picture_add').click(
            function()
            {
                $('input', $('.uploader:last').clone().appendTo('.uploader:eq(0)')).val('').attr('name', 'f' + $('.uploader').length);
            }
        );
    }
);
