function initBasics() {
	
	// HOVER-EFFECTS
	
	// Exclude IE from hovering effects as it renders it shitty...
	if(!$.browser.msie){

		$(".transparencyhover").fadeTo(500,0.5);
		
		// Init hover areas
		$(".transparencyhover").hover (
			function() {
				$(this).stop();
				$(this).fadeTo(200,1);
			},
			function() {
				$(this).stop();
				$(this).fadeTo(1000,0.5);;
			}
		)
	
	} // if !IE	
	
} // function
