/**
 * @author unvoid
 */
$(function() {
	var colors = {
		rosa	: '#ff3399',
		blanco	: '#ffffff',
		azul	: '#33ccff',
		verde	: '#33ff66',
		negro	: '#000000'
	};
	
	$('ul#choose-color li a')
		.hover(
			function(){
				$(this).stop();
				$(this).animate({ width : 100 },200);
			},
			function(){ 
				$(this).stop();
				$(this).animate({ width : 10 },200); 
			
			}
		)
		.click(function(){
			return true;
			var d = new Date();
			document.cookie = "background=" + colors[this.className]+";expires=;path=/";
			$('body, body h1').css( { background: colors[this.className] } );
			return false;
		});
});