/* Design & Code (c) Devoler */

function showData(I_element) {
    
var agt=navigator.userAgent.toLowerCase();
var is_ie = ((agt.indexOf("msie") != -1) && (agt.indexOf("opera") == -1));

if ( is_ie ) {

    document.getElementById('peoples-block').style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + I_element['Image'] + "', sizingMethod='scale';";
    document.getElementById('man').style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + I_element['img'] + "', sizingMethod='scale';";

} else {

  imgE1 = document.getElementById('index-man');
  if (imgE1) {
     imgE1.src = I_element['img'];
  }
  backgrImg = imgE1 = document.getElementById('peoples-block');
  if (backgrImg) {
     backgrImg.style.backgroundImage = I_element['bgImage'];
  }

}

divEl = document.getElementById('balloon' + I_element['id']);
  if (divEl) {
    divEl.style.display = '';
  }
 
}

items2show = [
{
'id':'0',
'img':'img/people/sport.png',
'bgImage':'url(img/index-backs/sport.png)',
'Image':'img/index-backs/sport.png'
},
{
'id':'1',
'img':'img/people/car.png',
'bgImage':'url(img/index-backs/car.png)',
'Image':'img/index-backs/car.png'
},
{
'id':'2',
'img':'img/people/lections.png',
'bgImage':'url(img/index-backs/lections.png)',
'Image':'img/index-backs/lections.png'
},
{
'id':'3',
'img':'img/people/air.png',
'bgImage':'url(img/index-backs/air.png)',
'Image':'img/index-backs/air.png'
}
];

el2showNum = Math.floor(Math.random() * items2show.length);
showEl = items2show[el2showNum];

