$(function() {
	$('#boxPortfolioThumbnails .item').fadeTo(0, 0.35);
	$('#boxPortfolioThumbnails .item').bind('mouseenter', thumbMouseEnter);
	$('#boxPortfolioThumbnails .item').bind('mouseleave', thumbMouseLeave);
});

function thumbMouseEnter(ref) {
	var id = $(this).attr('id');
	$('#' + id).stop(true).fadeTo(150, 1);
}

function thumbMouseLeave(ref) {
	var id = $(this).attr('id');
	$('#' + id).stop(true).fadeTo(150, 0.35);
}
