(function() {
    'use strict';

var j = jQuery.noConflict();

    j('h1').fadeOut(5000,fadeBackIn);

    function fadeBackIn(){
        j('h1').fadeIn(5000);
    }


    j('p').css('border','1px solid blue');

    j('h2:contains("Child Abuse")').text("Wishes He was the SuperBowl Selfie Kid");

    j('input').hide();

Comments are closed.