$(function() {
	$('table.data, .data table').each(function() {
		$('tr:even', $(this)).addClass('alt');
	});
	
	$('table.products').each(function() {
		$('tbody tr:even', $(this)).addClass('alt');
	});
	
	
	$('.media-thumbs a[rel~="thumbnail"]').live('click', function(e) {
		e.preventDefault();
		$('.media-thumbs a[rel~="thumbnail"]').removeClass('active');
		$('.media-thumbs a[rel~="video"]').removeClass('active');
		$(this).addClass('active');
		var image = $('<img />').attr({
			'src': $(this).attr('href'),
			'alt': $('img', this).attr('alt')
		});
		$('.media-full').html(image);
	});
	
	$('.media-thumbs a[rel~="video"]').live('click', function(e) {
		e.preventDefault();
		$('.media-thumbs a[rel~="thumbnail"]').removeClass('active');
		$('.media-thumbs a[rel~="video"]').removeClass('active');
		$(this).addClass('active');
		$('.media-full').html($('<div />').attr('id', 'video'));
		
		$('#video').flash({
			swf: '/videos/flvPlayer.swf',
			height: 320, width: 425,
			flashvars: {
				flvToPlay: $(this).attr('href'),
				hiddenGui: "true",
				showScaleModes: "false",
				autoStart: "true"
			}
		});
	});
});
