You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
816 B
JavaScript

$(document).ready(function() {
$("#forniture1").hover(
function(){ $("#forniture1").hide()},
function(){ $("#child1").show()
});
$("#forniture2").hover(
function(){ $("#forniture2").hide()},
function(){ $("#child2").show()
});
$("#forniture3").hover(
function(){ $("#forniture3").hide()},
function(){ $("#child3").show()
});
$("#forniture4").hover(
function(){ $("#forniture4").hide()},
function(){ $("#child4").show()
});
$("#forniture5").hover(
function(){ $("#forniture5").hide()},
function(){ $("#child5").show()
});
$("#forniture6").hover(
function(){ $("#forniture6").hide()},
function(){ $("#child6").show()
});
});;