﻿$(document).ready( function() {
	$('#galeryCarousel').jcarousel({
		auto: 5,
		animation: 1500,
		scroll: 1,
		visible: 1,
		wrap: 'both',
		buttonNextHTML: null,
		buttonPrevHTML: null,
		initCallBack: ayar
	});
	
	$('#galeryCarousel a').lightBox({
		txtImage: '---',
		txtOf: '/'
	});
	
	$('tbody tr').each (
		function(index) {
			if(index%2 == 0) {
				$(this).addClass('odd');
			} else {
				$(this).addClass('even');
			}
		}
	);
});

function ayar() {
	console.log('Deneme');
}
