/* CSS Document - Zekas Pousada e Restaurante

@author : Sérgio Hampel
@e-mail: rhampel22@gmail.com
@url: http://www.sergiohampel.com

*/

$(document).ready(function() {

	$('#slideshow li image').width(380);
	$('#slideshow li image').height(306);
	
	$('#slideshow').nivoSlider({
		pauseTime:5000, 
		pauseOnHover:true,
		captionOpacity:0.5
	});
	
	$("#galFoto a").fancybox({
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic',
		'titlePosition' : 'over'
	});
	$("#galFoto").find('li').each(function(i){
		var lis = i + 1;
		var tres = lis % 3;
		if(tres == 0){
			$(this).addClass('teste');
		}
	});
	
	$("table tbody tr:odd").addClass('trOdd');
	$("table tbody td:odd").addClass('tdOdd');
	$("table tbody tr:even td:odd").addClass('tdOdd2');
  
});
