/*
Title:      Milkfish Initialize
Author:     info@milkfishstudio.com
Copyright:  2010, Milkfish Studio, LLC.  All rights resevered (please don't re-use without permission).
*/
$(document).ready(function(){      
    var com = {
        milkfishstudio: {
            Home: function() {
                var _min = 154,
                    _description = $('meta[name=description]').attr('content'),
                    _filters = ['All Disciplines', 'Branding', 'Print','Online', 'Self-Initiated'],
                    _date = new Date(),
                    _date = _date.getHours() + '' + _date.getMinutes() + '' + _date.getSeconds();
                
                $('body').prepend('<div id="home-'+ _date + '"/>');
                var $home = $('#home-' + _date);
                $home.hide();
                $home.MFSIndex({
                    column: _min, 
                    text: _description,
                    filters: _filters
                });
            }
        }
    }
    
    // Start engine here
    new com.milkfishstudio.Home();
});
