$(function() {
	$(".portfolio_web_img img").css("opacity","0.5");
	$(".portfolio_web_img img").hover(function () {
	$(this).stop().animate({
	opacity: 1.0
	}, "fast");
	},

	function () {
	$(this).stop().animate({
	opacity: 0.5
	}, "slow");
	});
});

$(function() {
	$(".baner_container").css("opacity","0.5");
	$(".baner_container").hover(function () {
	$(this).stop().animate({
	opacity: 1.0
	}, "fast");
	},

	function () {
	$(this).stop().animate({
	opacity: 0.5
	}, "slow");
	});
});
