function mainmenu(){}
 
 
$(document).ready(function(){		
      mainmenu();
		$(function(){
			$('ul.sf-menu').superfish();
		});


   $('.ccc').hover(function()
    { 
     $(this).parent().addClass('current');
     }   
     );  
	
	    $('.zwinchildren').click(function()
    { 
         
      if ($(this).next().is(':hidden')){
    
         $(this).next().show('slow');
          }else{
            $(this).next().hide('slow');
           } 
     }   
     );   
	
	
	$('.tip').click(function()
    { 
         
      if ($(this).prev().is(':hidden')){
    
         $(this).prev().show('slow');
          }else{
          
            $(this).prev().hide('slow');
            
           } 
     }   
     );   
	
});
