I have 30 icons, and after hover, different icons are shown. How can I write this shorter?
jQuery
$('#iconTech01').hover(
function() {
$('#iconTechBig01').stop(true, true).fadeIn("slow");
$('#iconTech01 img').stop(true, true).fadeOut("slow");
},
function() {
$('#iconTechBig01').stop(true, true).fadeOut("slow");
$('#iconTech01 img').stop(true, true).fadeIn("slow");
});
$('#iconTech02').hover(
function() {
$('#iconTechBig02').stop(true, true).fadeIn("slow");
$('#iconTech02 img').stop(true, true).fadeOut("slow");
},
function() {
$('#iconTechBig02').stop(true, true).fadeOut("slow");
$('#iconTech02 img').stop(true, true).fadeIn("slow");
});
$('#iconTech03').hover(
function() {
$('#iconTechBig03').stop(true, true).fadeIn("slow");
$('#iconTech03 img').stop(true, true).fadeOut("slow");
},
function() {
$('#iconTechBig03').stop(true, true).fadeOut("slow");
$('#iconTech03 img').stop(true, true).fadeIn("slow");
});
$('#iconTech04').hover(
function() {
$('#iconTechBig04').stop(true, true).fadeIn("slow");
$('#iconTech04 img').stop(true, true).fadeOut("slow");
},
function() {
$('#iconTechBig04').stop(true, true).fadeOut("slow");
$('#iconTech04 img').stop(true, true).fadeIn("slow");
});
$('#iconTech05').hover(
function() {
$('#iconTechBig05').stop(true, true).fadeIn("slow");
$('#iconTech05 img').stop(true, true).fadeOut("slow");
},
function() {
$('#iconTechBig05').stop(true, true).fadeOut("slow");
$('#iconTech05 img').stop(true, true).fadeIn("slow");
});
HTML
<div id="iconWraper">
<div id="iconTech01" class="icon"><img src="img/icons/tech/tech01.png" alt="icon 01" /></div>
<div id="iconTech02" class="icon"><img src="img/icons/tech/tech02.png" alt="icon 02" /></div>
<div id="iconTech03" class="icon"><img src="img/icons/tech/tech03.png" alt="icon 03" /></div>
<div id="iconTech04" class="icon"><img src="img/icons/tech/tech04.png" alt="icon 04" /></div>
</div>
<div id="iconTechBig01" class="iconBig"><img src="img/icons/tech/tech01Big.png" alt="ikona 01" /></div>
<div id="iconTechBig02" class="iconBig"><img src="img/icons/tech/tech02Big.png" alt="ikona 02" /></div>
<div id="iconTechBig03" class="iconBig"><img src="img/icons/tech/tech03Big.png" alt="ikona 02" /></div>
<div id="iconTechBig04" class="iconBig"><img src="img/icons/tech/tech04Big.png" alt="ikona 02" /></div>