jQuery.noConflict();
jQuery(document).ready(function($){
	
	$("#1").click(function() {
    	if ($(this).hasClass("active"))
    		$(this).removeClass("active");
    	else
    		$(this).addClass("active");
    	$("#info1").toggle('slow');
  		$("#info2").hide('slow');
		$("#info3").hide('slow');
		$("#info4").hide('slow');
    	$("#2").removeClass("active");
    	$("#3").removeClass("active");
    	$("#4").removeClass("active");
	});
	$("#2").click(function() {
    	if ($(this).hasClass("active"))
    		$(this).removeClass("active");
    	else
    		$(this).addClass("active");
    	$("#info2").toggle('slow');
  		$("#info1").hide('slow');
		$("#info3").hide('slow');
		$("#info4").hide('slow');
    	$("#1").removeClass("active");
    	$("#3").removeClass("active");
    	$("#4").removeClass("active");	
	});
	$("#3").click(function() {
    	if ($(this).hasClass("active"))
    		$(this).removeClass("active");
    	else
    		$(this).addClass("active");
    	$("#info3").toggle('slow');
  		$("#info2").hide('slow');
		$("#info1").hide('slow');
		$("#info4").hide('slow');
    	$("#2").removeClass("active");
    	$("#1").removeClass("active");
    	$("#4").removeClass("active");

	});
	$("#4").click(function() {
    	if ($(this).hasClass("active"))
    		$(this).removeClass("active");
    	else
    		$(this).addClass("active");
    	$("#info4").toggle('slow');
  		$("#info2").hide('slow');
		$("#info3").hide('slow');
		$("#info1").hide('slow');
    	$("#2").removeClass("active");
    	$("#3").removeClass("active");
    	$("#1").removeClass("active");
	});	
});