﻿$(function() {
    $.fn.colorbox.settings.bgOpacity = "0.9";
    $("a.tellafriend").colorbox(
    {
        fixedWidth: "484px",
        fixedHeight: "680px",
        iframe: true
    });
    var basepath = $(".assessment a").attr("href");
    var path;
    $(".assessment a").click(function(event) {
        event.preventDefault();
        var self = $(this);
        var parent = self.parent();
        var industry = parent.find(".select.industry select").val();
        var country = parent.find(".select.country select").val();
        path = basepath + "?industry=" + industry + "&country=" + country;
        self.attr("href", path);
        if (industry == "none" || country == "none") {
            event.stopImmediatePropagation();
            alert(parent.find(".errortext").text());
        }
    });
    $(".assessment a").colorbox({ open: false, fixedWidth: "914", fixedHeight: 571, iframe: true });
});