$(document).ready(function(){
	
	$('.content nav a').click(function(){
		var selected = $(this).parent().attr('class');
		$('.hero .games a').each(function(i){
			if($(this).hasClass(selected)) {
				$(this).show();
			} else {
				$(this).hide();
			}
		});
		return false;
	})
	
})

