$j = jQuery.noConflict();
$j(document).ready(function($){
	if($.cookie('cor'))
	{
		$('body').css("background-color", $.cookie('cor'));
	}
	$('.cor').click(function () {
      	$.cookie('cor', $j(this).css("background-color"), {expires:30});
      	$('body').css("background-color", $(this).css("background-color"));
    });
	
	$('#new-nome').labelValue();
	$('#new-email').labelValue();
});