$(function()
{
    setTimeout(function(){
    $('#franchiserecruitment').animate({ top: 0 }, 2000, 'easeOutBounce');
    }, 1000);

    $('.date').datepicker({ dateFormat: 'dd/mm/yy', constrainInput: true, changeMonth: true, changeYear: true, yearRange: "-63:-18", onSelect: function(dateText, inst) { $(".fields_date").val(dateText); }});
});

/**
 * from: http://paulirish.com/2009/log-a-lightweight-wrapper-for-consolelog/
 */
window.log = function(){
	log.history = log.history || [];   // store logs to an array for reference
	log.history.push(arguments);
	if(this.console){
		console.log( Array.prototype.slice.call(arguments) );
	}
};
