
$(function() {
  $('.browsecateg').hover(function(){
    $('.bccont', this).css('display', 'block');
	// $(".bccont").show("fast");
  },//
  function(){
    $('.bccont', this).css('display', 'none');
	// $(".bccont").hide("fast");
  });

  $(".switchmarket").mouseenter(function(){
    $(".toplink").addClass("ishover");
    $(".inside", $(this).parent()).show();
  }).mouseleave(function(){
    $(".toplink").removeClass("ishover");
    $(".inside", $(this).parent()).hide();
  });
  
  $(".switchmarket .toplink").click(function(){ 
    return false;
  });

});

 

