﻿//*************************************************************************************
// File     : jnes_functions.js
// Requires : jquery.js (version 1.3.2+)
// Author   : Kyle Weems (ksw)
// Origin   : mindfly.com
// Created  : June 10, 2009
// Modified : June 10, 2009
//*************************************************************************************

$(document).ready(function() { preventShortSite(); bannerRotator(); });

function preventShortSite() {
    var difference = $(window).height() - ($('.page.header').height() + $('.page.footer').height());
    if (difference > $('.content.section').height()) {
        $('.content.section').css('min-height', difference + 'px');
    }
}

//function bannerRotator() {
//    var file = "/customControls/imageList/imageList.aspx?dir=/uploads/images/portraits/";
//    $.get(file, function(data) {
//        var imageList = data.split("|");
//        imageList.pop();
//        var n = Math.floor(Math.random() * imageList.length);
//        $('#joannaPic').attr('src', imageList[n]);
//    });
//}
