function S4() {
   return (((1+Math.random())*0x10000)|0).toString(16).substring(1);
}
function guid() {
   return (S4()+S4()+"-"+S4()+"-"+S4()+"-"+S4()+"-"+S4()+S4()+S4());
}

function get_visitor_guid() {
	options = {
		expires: 365, // days = 1 year
		path: '/',
		secure: false
	}
	if(RACK_ENV != 'development') {
		options['domain'] = '.cobregratis.com.br';
	}
	visitor_guid = $.cookie('cobregratis_visitor_guid');
	if(!visitor_guid) {
		visitor_guid = guid();
		$.cookie('cobregratis_visitor_guid', visitor_guid, options);
	}
	return visitor_guid;
}

$(document).ready(function(){

	// Signup form on home header
	$('#signup_form').validate({
		messages: {
			name: "Please specify your name",
			email: {
				required: "Por favor, digite o seu e-mail.",
				email: "E-mail inválido. Corrija-o e tente novamente."
			}
		},
		focusInvalid: true
	});

	$('.tooltip').qtip({
		content: {
			text: false // Use each elements title attribute
		},
		position:{
      corner: {
         target: 'topMiddle',
         tooltip: 'bottomMiddle'
      }
		},
		show: 'mouseover',
		hide: 'mouseout',
		style: {
			border: {
				width: 2,
				radius: 0
			},
			padding: 10, 
			textAlign: 'center',
			tip: true,
			name: 'cream',
		}
	})

});
