// SCRIPTS 


$(document).ready(function(){
						   
	$('#CliqueCEIG10').click(function(){	
	$('.marca').fadeIn(4000);
	$('.texto1').hide();			
	$('.texto2').fadeIn(4000);
	 });

	
});


$(document).ready(function() {	

	$('a[name=modal]').click(function(e) {
		e.preventDefault();
		
		var id = $(this).attr('href');
	
		var maskHeight = $(document).height();
		var maskWidth = $(window).width();
	
		$('#mask').css({'width':maskWidth,'height':maskHeight});

		$('#mask').fadeIn(1000);	
		$('#mask').fadeTo("slow",0.8);	
	
		//Get the window height and width
		var winH = $(window).height();
		var winW = $(window).width();
              
		$(id).css('top',  winH/2-$(id).height()/2);
		$(id).css('left', winW/2-$(id).width()/2);
	
		$(id).fadeIn(2000); 
	
	});
	
	$('.window .close').click(function (e) {
		e.preventDefault();
		
		$('#mask').hide();
		$('.window').hide();
		$(id).hide(); 
	});		
	
	$('#mask').click(function () {
		$(this).hide();
		$('.window').hide();
		$(id).hide(); 
	});			
	
});




$(document).ready(function() {	

	$('a[name=mostra]').click(function(e) {
		e.preventDefault();
		
		var id = $(this).attr('href');
		$(id).slideToggle(1000); 
	
	});
	
	$('.close2').click(function (e) {
		e.preventDefault();
		$(id).slideToggle(); 
	});		
	
	
	
});


$(document).ready(function() {	

	$('a[name=mostra2]').click(function(e) {
		e.preventDefault();
		
		var id2 = $(this).attr('href');
		$(id2).slideToggle(1000); 
	
	});
	
	$('.close2').click(function (e) {
		e.preventDefault();
		$(id2).slideToggle(); 
	});		
	
	
	
});
