<script type="text/javascript">
function getCookie(c_name)
{
var i,x,y,ARRcookies=document.cookie.split(";");
for (i=0;i<ARRcookies.length;i++)
{
x=ARRcookies[i].substr(0,ARRcookies[i].indexOf("="));
y=ARRcookies[i].substr(ARRcookies[i].indexOf("=")+1);
x=x.replace(/^\s+|\s+$/g,"");
if (x==c_name)
{
return unescape(y);
}
}
}
function setCookie(c_name,value,exdays)
{
var exdate=new Date();
exdate.setDate(exdate.getDate() + exdays);
var c_value=escape(value) + ((exdays==null) ? "" : "; expires="+exdate.toUTCString());
document.cookie=c_name + "=" + c_value;
}
function checkCookie()
{
var username=getCookie("username");
if (username!=null && username!="")
{
document.getElementById('intro').style.visibility = "hidden";
document.getElementById('wraper').style.visibility = "visible";
setCookie("username",username,365);
}
else
{
document.getElementById('intro').style.visibility = "visible";
document.getElementById('wraper').style.visibility = "hidden";
if (username!=null && username!="")
{
setCookie("username",username,365);
}
}
}
</script>
<body <?php body_class(); ?>>
<?php if(is_front_page()) { ?>
<div id="intro" style="position:absolute;width:100%;height:100%; background:url(images/intro_background.jpg) top left no-repeat">
<img src="<?php bloginfo('templste_directory') ?>/images/intro_play_btn.jpg" onClick="document.getElementById('intro').style.visibility = 'hidden';
document.getElementById('wrapper').style.display = 'visible';">
</div>
<?php } ?>
Нашел такой скриптец по установки куков!
Немного подкоректировал, но нужна помощь ещё...
чтобы установить кику при клике на картинку...
Хелп плиз!!!!