/*
	PRIQIA 2008-09-10
*/
$(function() {
	if ($("a>img.photo")) {
		$("a>img.photo").hover(
			function() {
				$(this).fadeTo(250, 0.7);
			},
			function() {
				$(this).fadeTo(250, 1.0);
			}
		);
	}
});

// lightpop
$(function() {
	if ($('a[@rel*=lightbox]')) {
		$('a[@rel*=lightbox]').lightpop({contentFrameType:'box'});
	}
});