$(document).ready(function() {
						   
	// hover menu
	$(".hover").hover(function() {
		$(this).removeClass('b');
		$(this).addClass('g');
	}, function() {
		$(this).removeClass('g');
		$(this).addClass('b');
	});	
	
	$(".hover").click(function() {
		
		//se ja esta activo, ao clicar desactiva e mostra todos os trabalhos
		if($(this).hasClass('gsel'))
		{
			$(".hover").removeClass('g');
			$(".hover").removeClass('gsel');
			$(".work_outer").fadeTo("fast", 1);
		}
		//marca a categoria activa e os trabalhos dessa categoria
		else
		{
			$(".hover").removeClass('g');
			$(".hover").removeClass('gsel');
			$(this).addClass('gsel');
			
			$(".work_outer").fadeTo("fast", 0.35);
			var att="."+$(this).attr('id');
			$(att).fadeTo("fast", 1);
		}
		
	});
	
	
	
	
	
	
	
	
	
	// hover works
	$(".hover2").hover(function() {
		$(this).removeClass('b');
		$(this).addClass('g');
	}, function() {
		$(this).removeClass('g');
		$(this).addClass('b');
	});	
	
	
	//hover back
	$(".hover3").hover(function() {
		$(this).removeClass('p');
		$(this).addClass('g');
	}, function() {
		$(this).removeClass('g');
		$(this).addClass('p');
	});	
	
	//por links a abrir nova janela nas news new_text_cont
	$(".new_text_cont a").attr('target','_blank');
	
});


