$(document).ready(function(){
	$('#tab1').bind("click",function(e){
		$('#tab_w1').attr('class','selected');
		$('#tab_w2').attr('class','unselected');
		$('#tab_w3').attr('class','unselected');
		$('#tab_w4').attr('class','unselected');
		
		$('#exclusives').show("normal");
		$('#noticias').hide();
		$('#fotos').hide();
		$('#videos').hide();
		return false;
	});
	$('#tab2').bind("click",function(e){

		$('#tab_w1').attr('class','unselected');
		$('#tab_w2').attr('class','selected');
		$('#tab_w3').attr('class','unselected');
		$('#tab_w4').attr('class','unselected');
		
		$('#noticias').show("normal");
		$('#exclusives').hide();
		$('#fotos').hide();
		$('#videos').hide();
		return false;
	});
	$('#tab3').bind("click",function(e){

		$('#tab_w1').attr('class','unselected');
		$('#tab_w2').attr('class','unselected');
		$('#tab_w3').attr('class','selected');
		$('#tab_w4').attr('class','unselected');
		
		$('#fotos').show("normal");
		$('#exclusives').hide();
		$('#videos').hide();
		$('#noticias').hide();
		return false;
	});
	$('#tab4').bind("click",function(e){
		
		$('#tab_w1').attr('class','unselected');
		$('#tab_w2').attr('class','unselected');
		$('#tab_w3').attr('class','unselected');
		$('#tab_w4').attr('class','selected');
		
		$('#videos').show("normal");
		$('#fotos').hide();
		$('#exclusives').hide();
		$('#noticias').hide();
		//alert('Tab 4');
		return false;
	});
});
