$(document).ready(function () {
    var browser = {
        init: function () {
            if ($.browser.msie) {
                if ($.browser.version == "6.0") {
                }
                else {
                    this.styleIt();
                }
            }
            else {
                this.styleIt();
            }
        },
        styleIt: function () {

            $(".text-image").each(function () {
                $("h2:eq(0)", this).css({
                    'position': 'absolute',
                    'top': '-5px',
                    'left': '0',
                    'background-color': '#6B3109',
                    'width': '98.3%',
                    'padding': '5px',
                    '-webkit-border-radius': '5px 5px 0px 0px',
                    '-moz-border-radius': '5px 5px 0px 0px',
                    'border-radius': '5px 5px 0px 0px',
                    'behavior': 'url(PIE.htc)'
                });
                $(this).css({
                    'position': 'relative',
                    'padding-top': '30px',
                    'padding-bottom': '30px'
                });
            });
        }
    }
    browser.init();
});
