$(function() {
	$('a.gallery').click(function() {
		var href = $(this).attr('href');
		var newwindow = window.open(href+'/js','window','width=600,height=700,scrollbars=1,toolbar=0,resizable=1');
		if (window.focus) {
			newwindow.focus();
		}
		return false;
	});
});
/*
$(function() {
	$('ul.gallery a').lightBox({imagePath:root+'js/lightbox/images', txtImage:''});
});
*/
