// Initial load, wait for jQuery162
var intInterval = setInterval(function () {
    if (jQuery) {
        clearInterval(intInterval);
        jQuery(function ($) { // jQuery Loaded

            /* Drop Cap */
            /*
            var content = $('#brighton_col2 p:first').html();
            var newContent = "<span class='dropcap'>" + content.substring(0, 1) + "</span>" + content.substring(1);
            $('#brighton_col2 p:first').html(newContent);
            */

            /* Footer Social Media */
            $('p.copyright').append('<a href="http://www.facebook.com/VeriFactsAuto" style="position:absolute;right:79px;top:5px;" target="_blank"><img src="http://static.hubspot.com/img/follow/icon_facebook.png" style="height:32px;width:32px;" /></a> <a href="http://twitter.com/VeriFactsAuto" style="position:absolute;right:42px;top:5px;" target="_blank"><img src="http://static.hubspot.com/img/follow/icon_twitter.png" style="height:32px;width:32px;" /></a> <a href="http://www.youtube.com/VeriFactsAuto" style="position:absolute;right:5px;top:5px;" target="_blank"><img src="http://static.hubspot.com/img/follow/icon_youtube.png" style="height:32px;width:32px;" /></a>');

        });
    }
}, 50);

