$(document).ready(function() {
    $("#blanket").show();
    $('#popup_close').click(function() {
        $('#popup').fadeOut('2000');
        $('#content').css('opacity','1');
        $("#blanket").hide();
    });
    $('#popup_close_transparent').click(function() {
        $('#popup_transparent').fadeOut('2000');
        $('#content').css('opacity','1');
        $("#blanket").hide();
    });
	$('#blanket').click(function() {
        $('#popup_transparent').fadeOut('2000');
        $('#content').css('opacity','1');
        $("#blanket").hide();
    });
    var height = $("#popup_left").height();
    var width = $("#popup_left").width();
//    $('#popup').removeAttr("height");
    $('#popup_bg').height(height+10);
    $('#popup_bg').width(width);
});


