<?php
/*
Plugin Name: 4si
Version: 0.1d
Plugin URI: http://www.fabriziotarizzo.org/2005-05-20/quattro-si/
Description: Aggiunge il banner per i referendum
Author: Fabrizio Tarizzo
Author URI: http://www.fabriziotarizzo.org/
*/

/*  Copyright (C) 2005 Fabrizio Tarizzo (email: software@fabriziotarizzo.org)

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.
*/

function ftr_4si_styles() { ?>
    <style type="text/css">
        .ffribbon {
            position:absolute;
            z-index:10000;
            right:0px;
            top:0px;
            height:199px;
            width:199px;
            background-color:transparent;
            margin:0px;
            padding:0px;
            border:0px none;
        }
    </style>
<?php }

function 
ftr_4si_box() { 
    
srand((double)microtime()*1000000);
    if (
rand(0,1) == 0)
        
$image "http://www.fabriziotarizzo.org/banner/referendum-fiocco-1dx.png";
    else
        
$image "http://www.fabriziotarizzo.org/banner/referendum-fiocco-2dx.png"
    
    
?>
<div>
<img class="ffribbon" src="<?php echo $image?>" usemap="#ffmap" alt="Il 12 e 13 giugno vota 4 sì!" />
<map name="ffmap" id="ffmap">
    <area shape="poly" coords="0,1,195,198,198,162,35,0" href="http://www.grazieallavita.org/" alt="Il 12 e 13 giugno vota 4 sì!" />
</map>
</div>
<?php }

add_action ('wp_head','ftr_4si_styles');
add_action ('wp_footer','ftr_4si_box');
?>