$(document).ready(function(){
	
	$('.portal').mouseover(function(){
		var id = $(this).attr('id');
		/*$(this).css({
			'background-image'	: 'url(images/content/' + id + '.jpg)'
		});*/
		$('#' + id + ' .portal-image-clear').stop().fadeTo('slow', 1);
	});
	
	$('.portal').mouseout(function(){
		var id = $(this).attr('id');
		/*$(this).css({
			'background-image'	: 'url(images/content/' + id + '_blur.jpg)'
		});*/
		$('#' + id + ' .portal-image-clear').stop().fadeTo('slow', 0);
	});
	
});
