function activateRolloverButton(){
	
	$(".MENU img").hover(
	 function()
	 {
	  this.src = this.src.replace("_out.","_over.");
	 },
	 function()
	 {
	  this.src = this.src.replace("_over.","_out.");
	 }
	);
}

function movecenter(){

	if (screen.width > 1024) {
		var offset = (screen.width - 1024) / 2;
		
		var pos = $('#GLOBALWRAPPER').position();
		$('#GLOBALWRAPPER').css({'left' : pos.left + offset + 'px'});
		
	}
	
}
