
	$(document).ready(function() {
	
		$('div.menu a img').hover(function() {
			var mn = $(this).attr('src');
			$(this).attr('src', mn.replace(/_off\./, '_on.'));
		}, function() {
			var mn = $(this).attr('src');
			$(this).attr('src', mn.replace(/_on\./, '_off.'));
		});
	

		$('div.menu_small a img').hover(function() {
			var mn = $(this).attr('src');
			$(this).attr('src', mn.replace(/_off\./, '_on.'));
		}, function() {
			var mn = $(this).attr('src');
			$(this).attr('src', mn.replace(/_on\./, '_off.'));
		});
		
		$('.lightbox').lightBox({});

	});
