window.addEvent('domready', function(){

	$$('table tbody > tr:odd').addClass('odd');
	$$('table tbody > tr').addEvent('mouseover', function () {
		this.setStyle('background-color','#dbe7f3');
	}).addEvent('mouseleave',function () {		
		this.set('style','');
	});

	SqueezeBox.assign($$('a[rel=boxed]'), {
		size: {x: 360, y: 500},
		handler: 'iframe',
		ajaxOptions: {
			method: 'get'
		}
	});

	$$('table input[type=image][name=sort]').each(function(sortButtons) {
		sortButtons.addEvent('click', function(e) {
			e.stop();
			$('sort_on').set('value',this.get('value'));
			document.sort_table.submit();
		});
	});
});
