
57 x 57 pixels 
114 x 114 pixels (high resolution) 
Live Version (Auto Button Effects) 

< !-- ADD ANYWHERE ON PAGE in < body> tag -->
< div id="CLOSECOOKIE" class="triangle-isosceles"> Add to Home Screen
< div id="CLOSECOOKIEX" onclick="_gaq.push(['_trackEvent','iAdd2Home','Close']);">
x< /div>< /div>
/* ADD IN SCRIPT TAG */
#CLOSECOOKIE
{
/*General Display "Main" */
display:none;
text-align:center;
width:230px;
padding:5px 10px 5px 10px;
position:fixed;
/*Raise Up From Arrow*/
bottom:15px;
/*Send Left Side to Center */
left:50%;
/* (-) half of (box + padding)*/
margin-left:-126px;
/*Format Text */
color:#666;
font-family:HelveticaNeue-Light;
font-size:1em;
/*Create Main Button Style CSS3 */
border:solid 1px #CCC;
-moz-border-radius:10px;
-webkit-border-radius:10px;
border-radius:10px;
-webkit-box-shadow: 0px 3px 4px -2px #000000;
}

/* ADD IN SCRIPT TAG */
#CLOSECOOKIE
{
/* CREATE GRADIENT : */
background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,rgba(255,255,255,0)), color-stop(100%,rgba(204,204,204,1)));
background: -webkit-linear-gradient(top, rgba(255,255,255,0) 1%,rgba(204,204,204,1) 100%);
}
< script type="text/javascript" src="/jquery-1.6.1.min.js">
< script type="text/javascript" src="/jquery.cookie.js">
< !--Standard icon NO effects-->
< link rel="apple-touch-icon-precomposed" href="images/ZAMARTZ_ICON_57.png" />
< !--iPhone icon Standard -->
< link rel="apple-touch-icon" sizes="57x57" href="images/ZAMARTZ_ICON_57.png" />
< !--iPhone icon HiRES -->
< link rel="apple-touch-icon" sizes="114x114" href="images/ZAMARTZ_ICON_114.png" />
//DETECT FOR iPHONE
jQuery(document).ready(function($){
var deviceAgent = navigator.userAgent.toLowerCase();
var agentID = deviceAgent.match(/(iphone)/);
if (agentID) {
if( $.cookie('HomeIcon') != null ) {
//ERROR CHECK IF COOKIE FADE OUT ANY WAY
$('#CLOSECOOKIE').delay(600).fadeOut('slow');
}else{
$('#CLOSECOOKIE').delay(600).fadeIn('slow');
}
};
});
//CREATE COOKIE & CLOSE CALLOUT
$('#CLOSECOOKIEX').click(
function(ADDTOHOME){
if( $.cookie('HomeIcon') == null )
{
$.cookie('HomeIcon', 'HomeHide', { expires: 7, path: '/'})
$('#CLOSECOOKIE').delay(600).fadeOut('slow');
};
});