$(document).ready(function(){
	
	$(".link_buzz").click(function(){
		
		//$(this).find(".smallBlur").fadeOut("fast");
		var curSelection = $(this).attr('id');
		
		$(".abuzz").fadeOut('slow');
		$("#buzz" + curSelection).fadeIn('slow');
		
		
	});
	
	$(".link_press").click(function(){
		
		//$(this).find(".smallBlur").fadeOut("fast");
		var curSelection = $(this).attr('id');
		
		$(".apress").fadeOut('slow');
		$("#press" + curSelection).fadeIn('slow');
		
		
	});
	
	$("#presstab").click(function(){
		
		//$(this).find(".smallBlur").fadeOut("fast");
		
		$("#zefanbuzzes").hide('slow');
		$("#zepressbuzzes").show('slow');
		
		
	});
	
	$("#buzztab").click(function(){
		
		//$(this).find(".smallBlur").fadeOut("fast");
		
		$("#zepressbuzzes").hide('slow');
		$("#zefanbuzzes").show('slow');
		
		
	});
	

	

})
