﻿/* Essentials
------------------------------------------------------------------------------------------------------------------- */
// synonym to console.log or alert
log = (function() {
	return (window.console && console.firebug) ? console.log : alert;
})();

jQuery(function($){
	$('body').addClass('js-enabled');
	$('.with-js').show();
	$('.without-js').hide();
});
/* ---------------------------------------------------------------------------------------------------------------- */
