        jQuery(document).ready(function($)
        {
            if(navigator.platform == 'iPad' || navigator.platform == 'iPhone' || navigator.platform == 'iPod')
            {
                $("#lineHeight").css("line-height", "200%");
                $("#images").css("height", "315px");
                $("#images").css("background", "url(images/lightblue4.png) top left no-repeat");
                $("#footerContent").css("padding-top", "7px");
                $("#footerContentlineHeight").css("line-height", "0");
            };
            if (/Firefox[\/\s](\d+\.\d+)/.test(navigator.userAgent))
            { //test for Firefox/x.x or Firefox x.x (ignoring remaining digits);
                var ffversion=new Number(RegExp.$1) // capture x.x portion and store as a number
                if (ffversion>=4)
                {
                    $("#lineHeight").css("line-height", "200%");
                    $("#images").css("height", "315px");
                    $("#images").css("margin-bottom", "25px");
                    $("#images").css("background", "url(images/lightblue4.png) top left no-repeat");
                }
            }
            if (/Chrome/.test(navigator.userAgent))
            {
                $("#images").css("margin-bottom", "25px");
            } //Chrome
        });



