$(document).ready(function() { 
	$('.gallery a').click(function() {
		//if (typeof(n) !== "undefined") n.close();
		n = window.open($(this).attr('href'),'img','width=600,height=450');
		n.focus();
		return false;
	});

	$('#menu a').mouseover(function() {
		$(this).children('img').css('opacity','1');
	});

	$('#menu a').mouseout(function() {
		$(this).children('img').css('opacity','0.7');
	});
	
});

function mytoggle(id) {
	var tmp = $('#'+id);
	if (tmp.is(':visible')) tmp.fadeOut(400); else tmp.fadeIn(400);
}

