﻿
/// <reference path="../../Script/jquery-1.2.6.min.js" />

$(document).ready(function() {
    //NOTE: sides should by default be positioned all the way at the top of each side.
    //Template will have some minimum height set.

    //#1)Detect the form height
    var height = $('form').innerHeight();
    //#2 Set left and right side height to form height
    $('.Wing').height(height);
    //#3 Shift left and right sides into position
    $('.Wing').css("margin-top", "-" + height + "px");
    //#4 Show the Wings
    $('.Wing').show();
});
