$(function() {

	$('.hoverLight').hover(function(){
		$(this).animate({'opacity': '0.7'}, 200);
	}, function(){
		$(this).animate({'opacity': '1'}, 200);
	}).click(function(){
		$(this).animate({'opacity': '1'}, 200);
	});

	$('ul#menu01 li.parent').hover(
		function(){
			var imgObj = $(this).find("img.rollover:not([src$='_on.gif'])");
			imgsrc = imgObj.attr('src');
			imgsrc = imgsrc.replace(/\.gif$/, '_on.gif');
			imgObj.attr('src', imgsrc);
			$(this).find('ul.submenu:not(:animated)').slideDown(150);
		},
		function(){
			var imgObj = $(this).find("img.rollover[src$='_on.gif']");
			imgsrc = imgObj.attr('src');
			imgsrc = imgsrc.replace(/_on\.gif$/, '.gif');
			imgObj.attr('src', imgsrc);
			$(this).find('ul.submenu:not(:animated)').slideUp(150);
	});
	$('ul#menu02 li.parent').hover(
		function(){
			$(this).find('ul.submenu:not(:animated)').slideDown(150);
		},
		function(){
			$(this).find('ul.submenu:not(:animated)').slideUp(150);
	});

	$('ul.submenu img').hover(
		function(){
			$(this).animate({'opacity': '0.6'}, 100);
		},
		function(){
			$(this).animate({'opacity': '1.0'}, 100);
		}
	);

});

