   $(function(){
     $(".next1").click(function(event) {
       if (this == event.target) {
         $('#step2').toggle('slow');
         }
       return false;
       })
        .css({cursor:'pointer'}).click();
     });
   $(function(){
     $(".next2").click(function(event) {
       if (this == event.target) {
         $('#step3').toggle('slow');
         }
       return false;
       })
        .css({cursor:'pointer'}).click();
     });
   $(function(){
     $(".next3").click(function(event) {
       if (this == event.target) {
         $('#step4').toggle('slow');
         }
       return false;
       })
        .css({cursor:'pointer'}).click();
     });

     $(function(){
      $('#Item1').click(function(event){
       if (this == event.target) {
          if ($('#Item1Details').is(':hidden')) {
            $('#Item1Details').toggle('slow');
            }
          }
          return false;
        })
        .css({cursor:'pointer'}).click();
      });

     $(function(){
      $('#Item2').click(function(event){
       if (this == event.target) {
          if ($('#Item2Details').is(':hidden')) {
            $('#Item2Details').toggle('slow');
            }
          }
          return false;
        })
        .css({cursor:'pointer'}).click();
      });

     $(function(){
      $('#Item3').click(function(event){
       if (this == event.target) {
          if ($('#Item3Details').is(':hidden')) {
            $('#Item3Details').toggle('slow');
            }
          }
          return false;
        })
        .css({cursor:'pointer'}).click();
      });

     $(function(){
      $('#Item4').click(function(event){
       if (this == event.target) {
          if ($('#Item4Details').is(':hidden')) {
            $('#Item4Details').toggle('slow');
            }
          }
          return false;
        })
        .css({cursor:'pointer'}).click();
      });

     $(function(){
      $('#Item5').click(function(event){
       if (this == event.target) {
          if ($('#Item5Details').is(':hidden')) {
            $('#Item5Details').toggle('slow');
            }
          }
          return false;
        })
        .css({cursor:'pointer'}).click();
      });

     $(function(){
      $('#Item6').click(function(event){
       if (this == event.target) {
          if ($('#Item6Details').is(':hidden')) {
            $('#Item6Details').toggle('slow');
            }
          }
          return false;
        })
        .css({cursor:'pointer'}).click();
      });

     $(function(){
      $('#Item7').click(function(event){
       if (this == event.target) {
          if ($('#Item7Details').is(':hidden')) {
            $('#Item7Details').toggle('slow');
            }
          }
          return false;
        })
        .css({cursor:'pointer'}).click();
      });

     $(function(){
      $('#Item9').click(function(event){
       if (this == event.target) {
          if ($('#Item9Details').is(':hidden')) {
            $('#Item9Details').toggle('slow');
            }
          }
          return false;
        })
        .css({cursor:'pointer'}).click();
      });

     $(function(){
      $('#Item10').click(function(event){
       if (this == event.target) {
          if ($('#Item10Details').is(':hidden')) {
            $('#Item10Details').toggle('slow');
            }
          }
          return false;
        })
        .css({cursor:'pointer'}).click();
      });

     $(function(){
      $('#Item15').click(function(event){
       if (this == event.target) {
          if ($('#Item15Details').is(':hidden')) {
            $('#Item15Details').toggle('slow');
            }
          }
          return false;
        })
        .css({cursor:'pointer'}).click();
      });

	 
  $('a[rel="external"]').click(function(){
    window.open($(this).attr('href'));
    return false;
    });