$(document).ready(function () {
	var tbodys = $("tbody.stripy");
	for (var i = 0, tbLength = tbodys.length; i < tbLength; i += 1) 
	{
		var rows = tbodys[i].getElementsByTagName("tr");
		for (var j = 0, rLength = rows.length; j < rLength;)
		{
			if ($(rows[j]).children("th").length > 0 && $(rows[j]).children("th.header").length < 0) {
				j+=1;
			}
			else {
				$(rows[j]).addClass("altRow");
				j+=2;
			}
		}
	}
	// Colorbox
	$('#gallery a').colorbox({width:'600px', height:'400px', opacity:'0.4'});
});
