$(function() {
	$(".magOver").css("opacity","0");
	$(".playOver").css("opacity","0");
	$(".singlePortfolioImgHover").css("opacity","0");

	$(".magOver").hover(function () {
		$(this).stop().animate({
			opacity: 1
		}, "slow");
	},
	 
	function () {
		$(this).stop().animate({
			opacity: 0
		}, "slow");
	});
	
	$(".singlePortfolioImgHover").hover(function () {
		$(this).stop().animate({
			opacity: 1
		}, "slow");
	},
	 
	function () {
		$(this).stop().animate({
			opacity: 0
		}, "slow");
	});
	
	
});
