/**
 * @fileOverview Enhances product.php page functionality, unobtrusively adding
 * submit handlers to 'Buy together' forms and click handle to 'Save pounds'link.
 */
(function ($){$(function (){
    $('#bundleoffers form').bind('submit', function (event){
        $("form[name=orderform]").append(this.bundleid)[0].submit();
        event.preventDefault();
    });
});})(jQuery);