jQuery.noConflict();
jQuery(function ($){

  $(document).ready(function(){
    
    $(".toggle_container").hide();
    $(".toggle_login").hide();
       
    $("#reg3").focus(function () {   
     $(".toggle_container").show("slow");
		 $(".toggle_login").hide("slow");	 
   	});
   	$("#reg1").focus(function () {
     $(".toggle_container").hide("slow"); 
		 $(".toggle_login").hide("slow"); 
  });
  $("#reg2").focus(function () {
  	$(".toggle_container").hide("slow");
    $(".toggle_login").show("slow");
  });
 });

});














