function changeBG(cc) {
	if(cc != undefined) {
		if(jQuery('.contentWrapper').css('background-color') != cc) {
			jQuery('.contentWrapper').animate({"background-color":cc}, 500);
			jQuery('body').animate({"background-color":cc}, 500);
		}
	}
}

