// Max Mishyn: Replaced with jQuery after upgrade to TYPO3 v 4.5

$(document).ready(function() {
	
	$(".hidemouse").bind('mouseover', function() {
		$(this).hide();
		$(this).parent().children('.showmouse').show();
	});

	$(".showmouse").bind('mouseout', function() {
		$(this).hide();
		$(this).parent().children('.hidemouse').show();
	});
});
