$(function()
{
     $("#motorroller").toggle (function()
     {  
         $("#sub1").hide();
         $(this).next().show (400);
     }, function(){     
        $(this).next().hide (400);
     });

     $("#ebikes").toggle (function()
     {
         $("#sub2").hide();
         $(this).next().show (400);
     }, function(){
         $(this).next().hide (400);
     });

});
