var country = '';
var state = '';

$(function() {

    $('.nav li').megamenu();

    $('#header').corner("bottom 8px");
    $('.sub-nav').uncorner();
    $('#middle').corner("8px");
    $('.body').corner("8px bottom").parent().css('padding', '2px').corner("bottom 10px");
    $('#content-body').corner("8px");

});



$(function() {
    $('a.popup').popupWindow({
        top: 50,
        left: 50,
        height: 600,
        width: 800
    });
});

// Disable State if Country doesn't equal US or CAN
//$(function() {
//    $("#country").change(function () {
//        country = $('#country').attr('value');
//        if (country !== 'USA' && country !== 'CAN' && country !== '') { 
//            $('#state').attr("disabled", true);
//        }
//        else{
//            $('#state').attr("disabled", false);
//        }
//    });
//});


//$(function() {
//    $("#clicktocall").click(function () {
//        $("div.number").addClass("show");
//        $("#clicktocall").addClass("hide");
//    });
//    
//});

$(function() {
    $("input").click(function () {
        $("#bottom").addClass("hide");
    });
});



