// JavaScript Document
var http_path = 'http://www.salon-wedkarski.pl/';
var iewys = 0;

function inputhover(idhover) {
var elemID = document.getElementById(idhover).className;
var last = elemID.substr(elemID.length - 5, 5);
var wys = document.getElementById(idhover).scrollHeight;
if (navigator.appName == 'Microsoft Internet Explorer')
{
 if (elemID.substr(0,6) == 'input-') {iewys = 2;} else {iewys = 0;};
}
wys = wys - iewys;
document.getElementById(idhover).style.background = "url('"+http_path+"img/input-"+last+".png') 0px -"+wys+"px no-repeat";
}

function inputhoverstop(idhover) {
var elemID = document.getElementById(idhover).className;
var last = elemID.substr(elemID.length - 5, 5);
document.getElementById(idhover).style.background = "url('"+http_path+"img/input-"+last+".png') 0px 0px no-repeat";
}