/**
 * Javascript Configuration
 */

var AppConfig = {
	domain 		: 'bedrijvenkringurk.nl',
	email 		: 'info@bedrijvenkringurk.nl',
	rootUrl 	: '',
	staticUrl 	: 'http://static.comsi.nl'
};

/**
 * Disable fancybox for the following positions
 */
var disableFancybox = new Array();
//disableFancybox[0] = '#header';

//usage: log('inside coolFunc',this,arguments);
// 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 && this.console.error){
 		console.log( Array.prototype.slice.call(arguments) );
	}
};
if (!window.console) window.console = {log:window.log};

