$(document).ready(function(){
//	initColorScheme();
});

function initColorScheme(){
	var wrapper = $('#wrapper');
	$('#nav a').each(function(){
		var this_link = $(this);
		this_link.click(function(){
			wrapper.removeAttr('class').addClass(this_link.attr('class'));
			return true;
		})
	});
}

