$j(document).ready(function() {
	$j('.gamesButton').hover(function() {
		slideOpen=true;
		$j('.slideOut').hide();
		$j('.gamesButton').not(this).css('opacity','0.2');
		$j(this).css('opacity','1.0').css('borderColor','orange');
		$kids = $j(this).children();
		$kids.filter(".slideOut").css('backgroundColor','orange').slideDown('fast');
	},function() {
		slideOpen=false;
		setTimeout("resetOpacity();",100);
		$j(this).css('borderColor','#333333');
		$kids = $j(this).children();
		$kids.filter('.slideOut').css('backgroundColor','#333333').slideUp(1);
	});
});

function resetOpacity()
{
	if (slideOpen == false) {
		$j('.gamesButton').css('opacity', '1.0');
	}
}
