$().ready(function(){
            function buyers(){
                $("#buyersguide form").ajaxForm({success:
                    function(html){
                        $.fn.colorbox({html:html, open:true, width:360}, buyers);
                    }
                });
            }
            $("#buyerslink").colorbox({width:360, open:open}, buyers);
            
            $("#newslink").colorbox({}, function(){
                $("#newsletter .submit").click(function(){
                    if($("input[name=email]").val() !== ""){
                        $.post("newsletter/?p=subscribe", {"emailconfirm": $("input[name=email]").val(), "email" : $("input[name=email]").val(), "htmlemail" : "0", "list[1]" : "signup", "subscribe" : "Subscribe", "listname[1]":"quinn"});
                        $.fn.colorbox({html:"<p style=\"padding:30px 50px 20px 50px; text-align:center;\">Thank You!</p>", open:true});
                    } else {
                        $("#newsletter_message").html("* An email address is required");
                    }
                    return false;
                });
            });
            
            $("#cboxOverlay").remove();
        });
