$(document).ready(function() {
	$("#pied a.transparent").fadeTo("slow",0.2);
	
	$.listen("mouseover","a.transparent",function() {
		$(this).fadeTo("slow",1);
	});
	
	$.listen("mouseout","a.transparent",function() {
		$(this).fadeTo("slow",0.2);
	});
	
});

function openRef(id,title) {
	Shadowbox.open({
		player: 'iframe',
		title: title,
		content: "content/pages/reference.php?id="+id,
		width: 400,
		height: 400		
	});
}