$(document).ready( function () {
	$('#indexList:not(.disabled) ul li a').click(function (e) {
		var current = $('#indexList ul li a.selected').attr('rel');
		$('#indexList ul li a').removeClass('selected');
		$('#categoryList div.categoryBlock').removeClass('faded');
		if (current != $(this).attr('rel')) {
			$(this).addClass('selected');
			$('#categoryList div.categoryBlock:not([rel="' + $(this).attr('rel') + '"])').addClass('faded');
		}
	});
	$('form#search input').focus( function (e) { $(this).addClass('focused');});
	$('form#search input').blur( function (e) { $(this).removeClass('focused');});
	$('.resultsPerPageSelector').change( function (e) {
		location.href = $(this).attr('rel') + $(this).val();
	});
	$('#city.filterOnChange').change( function (e) {
		location.href = $(this).attr('rel') + '&city=' + $(this).val();
	});
	$('#region.filterOnChange').change( function (e) {
		location.href = $(this).attr('rel') + '&region=' + $(this).val();
	});
});
