$(document).ready(function(){
    $(".filterClick").click(function(){
    	$("#tabs-7").fadeOut('slow');
		$("#tabs-7").hide();
		$("#loading").fadeIn();
		
        var filter = $(this).attr("id");
		var status = $(this).attr("rel");
		
        $.ajax({
            type: "GET",
            url: "/?" + filter + "=" + status,
			success: function(){
				$.ajax({
		            type: "POST",
		            url: "/ajax/results/",
		            //dataType: "json",
		            success: function(data){

		                html = data;

		                // Render the changes.
						$("#tabs-7").empty();
		                $("#tabs-7").append(html);
						$('#resultscarousel').jcarousel();
						$('#loading').fadeOut('slow');
						$('#resultscarousel').css('width', '2000000px');
		                $("#tabs-7").fadeIn();
		            }
		        });
			}
        });
	});
	
	$(".emoClick").click(function(){
    	$("#tabs-1").fadeOut('slow');
		$("#tabs-1").hide();
		$("#loading").fadeIn();
		
        var filter = $(this).attr("id");
		var status = $(this).attr("rel");
		
        $.ajax({
            type: "GET",
            url: "/?" + filter + "=" + status,
			success: function(){
				$.ajax({
		            type: "POST",
		            url: "/ajax/emo/",
		            //dataType: "json",
		            success: function(data){

		                html = data;

		                // Render the changes.
						$("#tabs-1").empty();
		                $("#tabs-1").append(html);
						$('#loading').fadeOut('slow');
		                $("#tabs-1").fadeIn();
		            }
		        });
			}
        });
	});
});

