﻿jQuery(function ($) {
    var contentheight = $('#tvcontent').height();
//  alert(contentheight);
    if (contentheight > 385) {
        //alert("Code to make the 'View More' link/button visible");
        $('#showMoreButton').show();
        $('#showMoreButton').click(function (e) {
            $('#tvscreen').toggleClass("fixed");
            $('#showMoreButton').toggleClass("showless");
            return false;
        });
    }

});
