function mainmenu(){}
 
$(document).ready(function(){					
mainmenu();




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

	
	    $('.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');
            
           } 
     }   
     );   
	
});


//function czyIE(){
//var IE=v=false,n;try{n=navigator.appVersion;IE=(n.indexOf('MSIE')!=-1)}catch(e){}
//if(IE)v=n.substr(n.indexOf('MSIE')+5,1);return parseInt(v);
//}


