﻿$(document).ready(function() {

    $("ul.form li").append("<div class='cleaner'></div>");

    //used to put the state and postcode on the same line... total hack
//    var statePostcode = $("<li class='item StatePostcode'><ul></ul></li>");
//    statePostcode
//        .hide()
//        .insertBefore("li.item.State")  //put it before the state list item
//        .children("ul")                 //find the ul node we've created
//        .append($("li.item.State"))     //move the state list item into the ul
//        .append($("li.item.Postcode")); //move the postcode list item into the ul

    //statePostcode.find("li.item").removeClass("item");

//    statePostcode
//        .append("<div class='cleaner'></div>")
//        .show();

});
