/*
 * MTVlaUtils.Cookie 0.0.1
 * leonardo.herman@gmail.com
 */
if(typeof MTVlaUtils==="undefined"){var MTVlaUtils={}}MTVlaUtils.Cookie={set:function(C,D,E){var A;if(E){var B=new Date();B.setTime(B.getTime()+(E*24*60*60*1000));A="; expires="+B.toGMTString()}else{A=""}document.cookie=C+"="+D+A+"; path=/"},get:function(B){var D=B+"=";var A=document.cookie.split(";");for(var C=0,E;C<A.length;C++){E=A[C];while(E.charAt(0)==" "){E=E.substring(1,E.length)}if(E.indexOf(D)==0){return E.substring(D.length,E.length)}}return null},clear:function(A){this.set(A,"",-1)}};