$(document).ready(function() {
    $("a.thickbox").click( function() {
	$("input#free_offer_product_id").val( $(this).attr( "rel" ) );
    });

    $("area.thickbox").click( function() {
	$("input#free_offer_product_id").val( $(this).attr( "rel" ) );
    });

    $("img.confirm-free-offer").click( function() {
	var url = $("input#free_offer_index").val( ) + "basket/add/" + $("input#free_offer_product_id").val( ) + "/" + $("select#free_offer").val( ) + "/";
	window.location = url;
    });

    $("input.checkoutFormSubmit").click( function() {
	$("#myForm").submit();
    });
});
