// JavaScript Document
$(document).ready(function(){
	var mySpeed=750; //miliseconds
	
	$(".web img").hover(function(){
		$(this).fadeTo(mySpeed, 0);
	},function(){
   		$(this).fadeTo(mySpeed, 1.0);
	});
	
	$(".portfolio.photo img").hover(function(){
		$(this).fadeTo(mySpeed, 0);
	},function(){
   		$(this).fadeTo(mySpeed, 1.0);
	});
	
			
});
