 // ********************* //
// JavaScript for eksternt søk i webshopen
// ********************* //
  function gotoURL(strURL){
    var obj = document.webshopSearch;
    strURL = strURL + '?q=kw:' + obj.textbox1.value;
     //alert(strURL);
      window.location.href = strURL;
  }
  
 // ********************* //
// Tabell funksjon for ulik styling av rader
// ********************* //
$(document).ready(function () {
$("table.productTable tr:even").addClass("even");
$("table.productTable tr:odd").addClass("odd");

$("table.fileTable tr:even").addClass("even");
$("table.fileTable tr:odd").addClass("odd");

}); 


 // ********************* //
// newsTicker
// ********************* //
$(document).ready(function(){
var speed = 100;
var pause = 7000;
function removeFirst(){
$('dl.newsTicker dd:first').fadeOut('fast', function() {addLast(this);});
}
function addLast(first){
$(first).insertAfter('dl.newsTicker dd:last').fadeIn('fast');
}
interval = setInterval(removeFirst, pause);
}); 

 // ********************* //
// Tab
// ********************* //
$(function () {
			var tabContainers = $('div.tabs > div, div.tabsVertical > div');
		//	tabContainers.hide().filter(':tjenester').show();

			$('div.tabs ul.tabNavigation a, div.tabsVertical ul.tabNav a').hover(function () {
				tabContainers.hide();
				tabContainers.filter(this.hash).show();
				$('div.tabs ul.tabNavigation a, div.tabsVertical ul.tabNav a').removeClass('selected');
				$(this).addClass('selected');
				return false;

			}).filter(':first').hover();
		});
