$(document).ready(function() {
	$(".acc h3").hover(function(){
		$(this).css("cursor","pointer"); 
	},function(){
		$(this).css("cursor","default"); 
		});
	$(".acc ul").css("display","none");
	$(".acc h3").click(function(){
		$(this).next().slideToggle("fast");
		});
});

$(document).ready(function(){
			$("a[rel^='prettyPhoto']").prettyPhoto();
		});
