// JavaScript Document

$(document).ready(function() {

	$('#sort-results-alphabetical').hide();
	$('#sort-by-category').removeAttr("href");
	
	$('#sort-by-alpha').click(function() {
		$(this).removeAttr("href");
		$(this).addClass('here');
		$('#sort-results-alphabetical').fadeOut("fast");	
		$('#sort-results-alphabetical').slideDown("slow");
		$('#sort-results').slideUp("slow");
		
		$('#sort-by-category').removeClass('here');
		$('#sort-by-category').attr("href","#sort-results");
	});
	
	$('#sort-by-category').click(function() {
		$(this).removeAttr("href");
		$(this).addClass('here');		
		$('#sort-results').slideDown("slow", function() {
			$('#sort-results-alphabetical').slideUp("fast");
		});
		$('#sort-by-alpha').removeClass('here');
		$('#sort-by-alpha').attr("href","#sort-results-alphabetical");
	});
	
});
