//------------------------------------------------------------------------------------------
// steuerung bilder tausch product info bereich begin
//------------------------------------------------------------------------------------------
function ProImgChange(imgSrc)
    {
    $(document).ready(function()
        { 
        $("#ProImg").animate({ opacity: 'hide'}, 50, function()
                                                    {
                                                    $("#ProImg").attr({src: imgSrc});
                                                    $("#ProImg").animate({ opacity: 'show'}, 50);
                                                    });
        });
    }
//------------------------------------------------------------------------------------------
// steuerung bilder tausch product info bereich end
//------------------------------------------------------------------------------------------

function SortProductListing(element, url)
    {
    var new_url = url + '/sort/' + $(element).val();
    
    window.location.assign(new_url);
    }

