// JavaScript Document

$(document).ready(function(){
	$(".hover-fade").hover(function(){
	$(this).stop().fadeTo("medium", 0.3); // This should set the opacity to 100% on hover
	},function(){
	$(this).stop().fadeTo("slow", 1.0); // This should set the opacity back to 60% on mouseout
	});
	
	$("a[rel^='prettyPhoto']").prettyPhoto();
});
