$(document).ready(function() {	
	// Remove overlay on window load event
    $(window).load(function(){
        $('.doc-loader').fadeOut('slow');
    });
	
	//Add tweets
	addTweets();
	
	//Attach custom UI events
    addEvents();   

    //Start Counting
    startCounter();
});

//------------------------------------------------------------------------
//Helper Methods -->
//------------------------------------------------------------------------
var ResetInput = function(){
    $('input, textarea').each(function() {
        $(this).val('').text('');
    });
};

var StringFormat = function() {
    var s = arguments[0];
    for (var i = 0; i < arguments.length - 1; i++) {
        var regExpression = new RegExp("\\{" + i + "\\}", "gm");
        s = s.replace(regExpression, arguments[i + 1]);
    }
    return s;
}
