$(document).ready(function() {
	$('.cat').hover(function() {
		$(this).find('.cat_title').css('background', '#cccccc');
		$(this).css('background', 'url(/img/'+site_id+'/str_bg_light.gif) center bottom no-repeat');
	},
	function() {
		$(this).find('.cat_title').css('background', '#ebebeb');
		$(this).css('background', 'none');
	});
	
	$('.unsel').hover(function() {
		$(this).css('background', '#cccccc');
	},
	function() {
		$(this).css('background', 'none');
	});
});
