$(document).ready(function(){
	
	var newOptions = {
		//domain: '*.eugeniofranchi.com',
		path: '/'
	}
	
	var color = jQuery.cookie('color');
	if(is_null(color) || color == 3){
		color = 0;
		jQuery.cookie('color', 0, newOptions);
	}else{
		color = parseInt(color) + 1;
		jQuery.cookie('color', color, newOptions);
	}


	/*
	 	Para Color Random
	*/
	//var ran = Math.floor(Math.random()*4);
	var colorName;
	if(color == 0) {colorName = 'dark';}
	if(color == 1) {colorName = 'bright';}
	if(color == 2) {colorName = 'black';}
	if(color == 3) {colorName = 'blue';}
	
	jQuery("link[name=color]").attr('href', '/interface/franchi/default/css/'+colorName+'.css');
	
	
	var wh = jQuery(this).height();
	var top = (wh / 2) - 60;
	jQuery('.load').css({'margin-top': top+'px'});
	
	
	
});



function is_null(input){
    return input==null;
  }
