﻿
App.Blog = function () {

    /* Private */

    /* Properties */

    var cmp = {};





    /* Defaults */

    TVI.debug = true;





    /* Methods */

    var init = function () {

        /* Constructor */


        $(".fancybox").fancybox({
            'width' : '75%',
            'height' : '100%',
            'autoScale' : false,
            'showNavArrows' : false,
            'type': 'iframe',
            'hideOnContentClick' : false,
            onStart: function(){
                hideFlash();
            },
            onClosed: function(){
                showFlash();
            }

        });

    };



    /* Public */

    TVI.apply(cmp, {



});


TVI.ready(init);


return cmp;


} ();
