$(document).ready(function() {
  $('input.keywords').click(function() {
    $(this).val('');
  })
  $('input.keywords').blur(function() {
    if ($(this).val() == '') {
        $(this).val('...');
    }
  })
  $('span#close').click(function() {
    $('div.subMenu').slideUp('slow');
    $('li.submenu').css('background', 'url("gfx/bullet2.png") no-repeat 0 3px');
  })
  $('li.submenu').click(function() {
    if ($('div.' + $(this).attr('id')).css('display') != 'none') {
      $('div.' + $(this).attr('id')).slideUp('slow');
      $(this).css('background', 'url("gfx/bullet2.png") no-repeat 0 3px');
    }
    else {
      $('div.subMenu').slideUp('slow'); // Remove all previous subMenues
      $('div.' + $(this).attr('id')).slideDown('slow');
      $('li.submenu').css('background', 'url("gfx/bullet2.png") no-repeat 0 3px'); // Set all other menu items to point right
      $(this).css('background', 'url("gfx/bullet.png") no-repeat 0 3px');
    }
  })
  $('a#products').click(function() {
    $('div.produkter').slideToggle('slow');
  })
   $('a#abm').click(function() {
    $('div.abm').slideToggle('slow');
  })
 
   $('a#brosjyrer').click(function() {
    $('div.brosjyrer').slideToggle('slow');
  })
   
   $('a#lagersystem').click(function() {
    $('div.lagersystem').slideToggle('slow');
  })
    
   $('a#arkiv').click(function() {
    $('div.arkiv').slideToggle('slow');
  })
     $('a#lagerautomater').click(function() {
    $('div.lagerautomater').slideToggle('slow');
  })
	      $('a#bransje').click(function() {
    $('div.bransje').slideToggle('slow');
  })
      })