$(document).ready(function(){
	$("a[rel=g]").fancybox();

	$(".titshow h2").click(function(){
		$(this).parent().find("div").toggle("slow");
	});
	
	$(".show h1").click(function(){
		$(this).parent().find("span").toggle("slow");
	});

});
