jQuery.noConflict();

jQuery(document).ready(function($) {


	// Start Jquery Code
	
	
	$(".switch").show();
	
	$("#copy_upload").hide();
	
	$(".switch, .button").click(function(){
		$(this).parent().find("input, textarea").val("");
		$(this).parent().slideUp("slow", function(){
			$(this).siblings(".copy").slideDown("slow");
		});
		
	});
	
	
	// End of JQuery Code
});
