$(document).ready(function() {

 $("#top2 div#top_menu div").hover(
  function() {
   $(this).addClass("h");
  }, 
  function() { 
   $(this).removeClass("h");
  }
 );
 
 
 
 $("#navbar li.dropdown").hover(
  function() {
   $(this).children().next().fadeIn("normal");
  }, 
  function() { 
   $(this).children().next().hide();
  }
 );
 
 
 
 

});


 

 function change_style(id, which, option) {
  document.getElementById(id+'_'+which).className = option;
  return true;
 }
 
// function disp() {
// 	if ($('#sub_kiw').css('display') == 'block') {
// 		$('#sub_kiw').SlideOutLeft(500);
// 	}
// 	if ($('#sub_onas').css('display') == 'block') {
// 		$('#sub_onas').SlideOutLeft(500);
// 	}
// }
// 
// function in_sub(id) {
// 	if (id=='sub_onas') {
// 		if ($('#sub_kiw').css('display') == 'block') {
//    $('#sub_kiw').SlideOutLeft();
// 		}
// 	}
//  else if (id=='sub_kiw') {
// 		if ($('#sub_onas').css('display') == 'block') {
//    $('#sub_onas').SlideOutLeft();
// 		}
// 	}
// 	if ($('#'+id).css('display') == 'none') {
// 		$('#'+id).SlideInLeft();
// 	}
// }
// function out_sub() {
// 	
// }


