<script src="http://code.jquery.com/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(function() {
$('div > div').hover(function() {
$(this).fadeToggle('slow');
}),
});
</script>
<style type="text/css">
div > div {
background: red;
margin: 10px;
width: 50px;
height: 50px;
}
</style>
<div><div>text1</div></div>
<div><div>text2</div></div>