$("div.productHolder div.productOption").live("click", function() {
    
    var productId = $(this).attr("rel").match(/\d$/);
    var productType = $(this).attr("rel").substring(0, $(this).attr("rel").length - 1 );
    
    $(this).parent().children(".activeOption").removeClass("activeOption");
    $(this).addClass("activeOption");

    $("." + productType).not("#" + productType + productId).fadeOut(500, function() {
        $("#" + productType + productId).fadeIn(500);
        if (productType=="csplugin" || productType=="beyondfmpage") {
            window.location.href = '#top';
        }
    });

});

