/**
* Conjunto de efectillos para Obra Profesional
*
**/
$(document).ready(function() {
	// Handling with tables (adding first and last classes for borders and adding alternate bgs)
	$('tbody tr:even').addClass('even');
	$('table.grid tbody tr:last-child').addClass('last');
	$('tr th:first-child, tr td:first-child').addClass('first');
	$('tr th:last-child, tr td:last-child').addClass('last');
	$('form.fields fieldset:last-child').addClass('last');
	// Handling with lists (alternate bgs)
	$('ul.simple li:even').addClass('even');
	// Handling with grid views (adding first and last classes for borders and adding alternate bgs)
	$('.grid .line:even').addClass('even');
	$('.grid .line:first-child').addClass('firstline');
	$('.grid .line:last-child').addClass('lastline');
		
	//Boton de accesibilidad
	$('a.accessiBot').click(function () {
	$('div#inpSub').toggle();
	$('div.button').toggle();
});
	//Efectos de la Home
	
	/*
	$('div.laCible').css('display','none');
	$('h4.disparador').click(function() {
		$(this).next('div.laCible').slideToggle(250);
	});
	*/
	
	
	
});

