$(document).ready(function(){
	$("#slider").jFlow({
		slides: "#slider",
		width: "942px",
		height: "532px",
		duration: 400,
		prev: ".jFlowPrev", // must be class, use . sign
		next: ".jFlowNext" // must be class, use . sign
	});
	$("a.jFlowPrev, a.jFlowNext").click(function(event) {
		event.preventDefault();
	});
	
	$("a.view").css("opacity", 0);
	$(".frame").hover(function(){
		$("a.view", this).fadeTo("fast", 1.0);
	},function(){
	$("a.view", this).fadeTo("slow", 0);
	});
	
	$("body.portfolio #contents a").fancybox({
		"overlayOpacity" : 0.7,
		"centerOnScroll" : false
	});
	
}); 