$(document).ready(function(){ 
	$('#aboService input.submit').hide();
	$('#aboService select').bind('change blur', function() { 
		window.location.pathname = myGlobals.webroot+$(this).val();
		return false;
	}); 
	
	
	$('#topseller').hide();
  $('#categoryNav a#cat-topseller').toggle(
    function(){
      $(this).toggleClass('active');
      $('#topseller').slideDown('normal');
    },
    function(){
      $(this).toggleClass('active');
      $('#topseller').slideUp('normal');
    }
  );
  
});
