jQuery(document).ready(function() {
	$('.cat1').hover(function() {$('.cat1 span').css('text-decoration','none')}, function() {$('.cat1 span').css('text-decoration','underline')});
	$('.cat2').hover(function() {$('.cat2 span').css('text-decoration','none')}, function() {$('.cat2 span').css('text-decoration','underline')});
	$('.cat3').hover(function() {$('.cat3 span').css('text-decoration','none')}, function() {$('.cat3 span').css('text-decoration','underline')});
	$('.cat4').hover(function() {$('.cat4 span').css('text-decoration','none')}, function() {$('.cat4 span').css('text-decoration','underline')});
});

