		$(document).ready(function(){		
		$("img.a").hover(
		function() {
		$(this).stop().animate({"opacity": "0"}, "slow");
		},
		function() {
		$(this).stop().animate({"opacity": "1"}, "slow");
		});

		$("img.c").hover(
		function() {
		$(this).stop().animate({"opacity": "0"}, "slow");
		},
		function() {
		$(this).stop().animate({"opacity": "1"}, "slow");
		});
		
		$("img.e").hover(
		function() {
		$(this).stop().animate({"opacity": "0"}, "slow");
		},
		function() {
		$(this).stop().animate({"opacity": "1"}, "slow");
		});
		
		$("img.g").hover(
		function() {
		$(this).stop().animate({"opacity": "0"}, "slow");
		},
		function() {
		$(this).stop().animate({"opacity": "1"}, "slow");
		});
		});
		 
		
				jQuery(document).ready(function() {
	jQuery("#portfolio-list").delegate("li", "mouseover mouseout", function(e) {
		if (e.type == 'mouseover') {
		jQuery("#portfolio-list li").not(this).dequeue().animate({opacity: "0.3"}, 300);
    	} else {
		jQuery("#portfolio-list li").not(this).dequeue().animate({opacity: "1"}, 300);
   		}
	});
	});

				jQuery(document).ready(function() {
	jQuery("#portfolio-list2").delegate("li", "mouseover mouseout", function(e) {
		if (e.type == 'mouseover') {
		jQuery("#portfolio-list2 li").not(this).dequeue().animate({opacity: "0.3"}, 300);
    	} else {
		jQuery("#portfolio-list2 li").not(this).dequeue().animate({opacity: "1"}, 300);
   		}
	});
});
