var Site = {
	// start stuff
	start: function(){
		$('linkstshirts').addEvents({
			'mouseenter': function() {	this.tween('background-color', '#8db2d0')	},
			'mouseleave': function() {	this.tween('background-color', '#9fc9eb')	}
		});
		
		$('linkspearls').addEvents({
			'mouseenter': function() {	this.tween('background-color', '#a1a2a3')	},
			'mouseleave': function() {	this.tween('background-color', '#b7b7b7')	}
		});
		
		$('linkscandles').addEvents({
			'mouseenter': function() {	this.tween('background-color', '#86b288')	},
			'mouseleave': function() {	this.tween('background-color', '#99ca99')	}
		});
	}
}

window.addEvents({
	'domready': function() {
		//console.log('DOM ready!');
		Site.start();
		//console.log('done in domready, waiting for page to fully load...');
	},
	
	'load': function(){
		//console.log('page is fully loaded, in load function');
		
		//console.log('As far as I know, all Javascript is loaded baby');
	}
	
});