jQuery.noConflict();     
jQuery(document).ready(function($){	
	$('#jQuery') 
			
		
	$(".topdropdown").click(function(){
		$("#dropDown").slideToggle("slow");
		$(this).toggleClass("active"); return false;
	});		
	
	
});		
