"use strict";

/*globals $, jQuery, window, document */

(function () {
	var thumbs;

	function bindThumbs() {
		thumbs
			.click(function () {
				thumbs.removeClass('on');
				$(this).addClass('on');
			});
	}

	$(document).ready(function () {
		thumbs = $('.live_screengrabs').find('a:has("span.over")');
		
		bindThumbs();
	});
}());