function hover(e)
 {
	tmp = e.src;
	tmp2 = e.src.replace(/0/,"1");
	e.src = tmp2;
	return true;
	
	 }
function unhover(e)
{
	e.src = tmp;
	return true;
	}

function showData(model)
 {
  if($('#model_'+model).css('display') != 'none')
  {
    $('#model_'+model).slideUp(500);
	$('#txt_'+model).html('rozwiń dane techniczne');
  }	
  else
  {
   $('#model_'+model).slideDown(500);
   $('#txt_'+model).html('zwiń dane techniczne');
   }
       
 }
$(document).ready(function(){
   $(".lightbox").lightbox();
 });

