jQuery(document).ready(function(){
	function getBlackdownCookie()
	{
		var i, name, value, cookies = document.cookie.split(";");
        for (i = 0; i < cookies.length; i++)
        {
        	name =cookies[i].substr(0, cookies[i].indexOf("="));
            value = cookies[i].substr(cookies[i].indexOf("=") + 1);
            name = name.replace(/^\s+|\s+$/g,"");
            if (name == "antyActaWCookie")
            {
            	return unescape(name);
            }
        }
   	}

	function setBlackdownCookie()
	{
	   var exdate = new Date();
       exdate.setDate(exdate.getDate() + 500);
       document.cookie = "antyActaWCookie" + "=" + ("1; expires=" + exdate.toUTCString());
	}

	function checkBlackdownCookie()
	{
           var username = getBlackdownCookie("antyActaWCookie");
           return (username != null && username != "");
	}

	if (!checkBlackdownCookie())
	{
		jQuery('body').prepend('<style type="text/css">#blackclose { color: white} #blackclose a, #blackclose a:visited { text-decoration: none;  font-family: "Arial",Helvetica,sans-serif; color: white }' +
							   '#blackclose a{font-size: 12px; margin-right: 10px; color: #fff; margin-top: 10px;} #blackclose p {padding: 0px; margin: 0px;} #blackclose p a{color: #fff; font-size: 26px; padding-top: 20px;}' + 
							   '</style>'); 
		jQuery('body').prepend('<div style="text-align: center; height: 40px; width: 100%; left: 0; position: fixed; bottom: 0; z-index: 2001; background: #000;" id="blackclose">' + 
        						'<a href="#" style="float: right">zamknij</a><p><a href="http://www.jestemprzeciwacta.pl/">Jeszcze nie wszystko stracone &gt;&gt;&gt; przyłącz się do protestu przeciwko ACTA</a></p></div>'); 

		jQuery('#blackclose a').click(function(){
        	jQuery('#blackclose').fadeOut(500);
        	setBlackdownCookie();
		});
	}
});
