$(function() {
    /* set global variable for boxy window */
    var contactBoxy = null;
    /* what to do when click on contact us link */
    $('.customerlog').click(function(){
        var boxy_content;
		boxy_content += "<div style=\"width:300px; height:160px\" class=\"login12\"><form id=\"feedback\" name=\"form1\" method=\"post\" action=\"\">";
        boxy_content += "<p class=\"logintexts\">Username:&nbsp;<input type=\"text\" name=\"textfield\" class=\"textbox\"/></p><p class=\"logintexts\">Password:&nbsp;&nbsp;<input type=\"password\" name=\"textfield2\" class=\"textbox\"/></p><p align=\"center\"><input name=\"submit\" type=\"submit\" class=\"loginpic1\" value=\"Login\" width=\"55\" border=\"0\" ></p>";
        boxy_content += "</form></div>";
        contactBoxy = new Boxy(boxy_content, {
            title: "Customer Login",
            draggable: false,
            modal: true,
            behaviours: function(c) {

          } 
        });
        return false;
    });
});