jQuery(function() {
    /* set global variable for boxy window */
    var contactBoxy = null;
    /* what to do when click on contact us link */
    jQuery('#geribildirimb').click(function(){
        var boxy_content;
        boxy_content += "<div style=\"width:350px; height:400px; background:#000000; color:#FFFFFF;\"><form id=\"geribildirimbform\">";
        boxy_content += "<p>Konu<br /><input type=\"text\" name=\"Geri_Bildirim_Konu\" id=\"Geri_Bildirim_Konu\" size=\"41\" /></p><p>İsminiz<br /><input type=\"text\" name=\"Geri_Bildirim_Isim\" id=\"Geri_Bildirim_Isim\" size=\"41\" /></p><p>E-mail:<br /><input type=\"text\" name=\"Geri_Bildirim_Email\" size=\"41\" /></p><p>Mesajınız:<br /><textarea name=\"Geri_Bilgirim_Comment\" id=\"Geri_Bilgirim_Comment\" cols=\"37\" rows=\"5\"></textarea></p><br /><input type=\"submit\" name=\"submit\" value=\"--  Gönder  --\" />";
        boxy_content += "</form><br /> (*) Tüm alanları lütfen doldurunuz.</div>";
        contactBoxy = new Boxy(boxy_content, {
            title: "Görüşlerinizi İletin",
            draggable: false,
            modal: true,
            behaviours: function(c) {
                c.find('#geribildirimbform').submit(function() {
                    Boxy.get(this).setContent("<div style=\"width: 300px; height: 300px\">Mesajınız iletiliyor...</div>");
                    jQuery.post("geribildirimilet.php", { subject: c.find("input[name='Geri_Bildirim_Konu']").val(), isim: c.find("input[name='Geri_Bildirim_Isim']").val(), your_email: c.find("input[name='Geri_Bildirim_Email']").val(), comment: c.find("#Geri_Bilgirim_Comment").val()},
                    function(data){
                        /*set boxy content to data from ajax call back*/
                        contactBoxy.setContent("<div style=\"width: 350px; height: 400px\">"+data+"</div>");
                    });
                    return false;
                });
            } 
        });
        return false;
    });
});