
	$(document).ready(function() {
		$('#top ul li a').each(function() {
			$(this).mouseover(function() {
				if($(this).parent().attr('class') != 'selected')
					$(this).parent().attr('class', 'on');
			});
			$(this).mouseout(function() {
				if($(this).parent().attr('class') != 'selected')
					$(this).parent().attr('class', '');
			});
		});
		
		

		$('.homeItemPage table tr td dl').each(function() {
			$(this).mouseover(function() {
				$(this).css('border', '1px dashed #222');
				$(this).css('background-color', '#f3ffe4');
			});
			$(this).mouseout(function() {
				$(this).css('border', '1px dashed #fff');
				$(this).css('border-bottom', '1px dashed #ddd');
				$(this).css('background-color', '#fff');
			});
		});



		// lightbox
		$('.lightbox').lightbox({
			fitToScreen: false,
			imageClickClose: false
		});

	});
	
