



<?php

// Each sponsor is an element of the $sponsors array:

$sponsors = array(
array('bison','Przykladowy opis po poslku','Example description in English','http://w...content-available-to-author-only...k.com/'),
array('bazarynka','Przykladowy opis po poslku','Example description in English','http://w...content-available-to-author-only...k.com/'),
array('budkasuflera','Przykladowy opis po poslku','Example description in English','http://w...content-available-to-author-only...k.com/'),
array('doda','Przykladowy opis po poslku','Example description in English','http://w...content-available-to-author-only...k.com/'),
array('limo','Przykladowy opis po poslku','Example description in English','http://w...content-available-to-author-only...k.com/'),
array('diil','Przykladowy opis po poslku','Example description in English','http://w...content-available-to-author-only...k.com/'),
array('dge','Przykladowy opis po poslku','Example description in English','http://w...content-available-to-author-only...k.com/')

);

shuffle($sponsors);
?>



<style type="text/css">


.center {text-align:center;}


/* ---- styling the list ---- */

#work {
float:left;
list-style:none;
margin:0;
padding:0;
}
#work li {
float:left;
display:block;
width:130px;
margin:10px;
display:inline;
padding:0px; 
background:#fff;
border:0px solid #333333;
height:130px;
}
#work li a {
/*border:none;*/
}
#work p {

font-size: 0.80em;

margin: 10px;


}


/* ---- show-hide elements ---- */

#work li .show{
display:block;
width:130px;
height:130px;
}
#work li .hide {
color:#d4df9d;
text-align: left;
height: 0;
overflow: hidden;
background:#111111;

cursor: pointer;

}
#work li:hover .hide, #work li.over .hide {
cursor: pointer;
height: 130px;
padding:5px;
width:130px;
border:1px solid #333333;
}
#work li:hover .show, #work li.over .show {
height: 0;
overflow: hidden;
}



</style>

 <ul id="work">

<?php

foreach($sponsors as $company)

{

echo '

<li> <a class="show" href="#"><img src="demo/img/sponsors/'.$company[0].'.jpg" /></a>
<div class="hide"><!--<a href="#"><h4>Limo Company</h4></a>-->
<p>'.$company[1].'</p><p><a href="'.$company[3].'">www</a>
</div>
</li>

';

}



</ul>

 

?>


