
$(".slidetabs").tabs(".content-image > div", {
effect: "fade",
fadeInSpeed: 1500,
fadeOutSpeed: 1500,
rotate: true
}).slideshow({autoplay: true, interval: 5000});

$(".content-menu").mouseover(function() {
    $(this).addClass("content-menu-hover");
    $(".nyheter-dropdown").hide();
	$(".innfatninger-dropdown").hide();
	$(".solbriller-dropdown").hide();
    $(".nyheter").removeClass("content-menu-hover");
	$(".divInnfatninger").removeClass("content-menu-hover");
	$(".divSolbriller").removeClass("content-menu-hover");
  }).mouseleave(function(){
    $(this).removeClass("content-menu-hover");
  });

$(document).ready(function(){

if ($.cookie('addedItem') == 1) {

$("#header-content").append("<img id='bubble' src='/extension/trendoptikk/design/trendoptikk/images/produktboble.png' style=' margin-top: -2px; margin-left: 278px; display:hidden;'>");
$("#bubble").fadeIn('slow');
$("#bubble").delay('3000').fadeOut('slow');
$.cookie('addedItem', '0');

}

	/*---------------- Dropdown-meny frontpage: -------------------*/
	
	$(".nyheter-dropdown").hide();
	$(".nyheter").mouseover(function() {
	  $(".nyheter-dropdown").show();
    	$(this).addClass("content-menu-hover");
  	 });
  	 $('.nyheter-dropdown').mouseleave(function() {
  		$(".nyheter-dropdown").hide();
  		$(".nyheter").removeClass("content-menu-hover");
	});
	
	/*---------------Innfatninger--------------------*/
	$(".innfatninger-dropdown").hide();
	
	$(".divInnfatninger").mouseover(function() {
		$(".innfatninger-dropdown").show();
    	$(this).addClass("content-menu-hover");
  	}).mouseleave(function() {
		$(".innfatninger-dropdown").hide();
  	});
	
	$(".innfatninger-dropdown").mouseover(function() {
		$(this).show();
    	$(".divInnfatninger").addClass("content-menu-hover");
  	}).mouseleave(function() {
		$(".innfatninger-dropdown").hide();
  		$(".divInnfatninger").removeClass("content-menu-hover");
	});
	
	/*---------------Solbriller--------------------*/
	$(".solbriller-dropdown").hide();
	
	$(".divSolbriller").mouseover(function() {
	  	$(".solbriller-dropdown").show();
    	$(this).addClass("content-menu-hover");
  	}).mouseleave(function() {
  		$(".solbriller-dropdown").hide();
  	});
	
	$(".solbriller-dropdown").mouseover(function() {
		$(this).show();
    	$(".divSolbriller").addClass("content-menu-hover");
  	}).mouseleave(function() {
  		$(".solbriller-dropdown").hide();
  		$(".divSolbriller").removeClass("content-menu-hover");
	});
	
	/* initialize scrollable */
	$(".scrollable_prod").scrollable();
	$(".scrollable_prod .items img[title]").tooltip();
	
	$("#content-menu div:last").css("border-right", "0");
	$("#relatedProducts .wrapper div:last-child").css("border-right", "0");


$("input[name=ActionAddToBasket]").bind('click', function() {
 $.cookie('addedItem','1');
});

var orig_url;
var new_url;


/***** Changes product picture on mouseover on related products *****/

	$(".product-related a img").bind('mouseenter', function() {
		new_url = $(this).attr("src");
       	orig_url = $(".attribute-image img").attr("src");
		var ofset =  new_url.length - 3;
		var imgtype = new_url.substring(ofset);
		
		ofset =  new_url.length - 5;
		new_url = new_url.substring(0, ofset) +"3." + imgtype;
		$(".attribute-image img").attr("src", new_url);
		
		$(this).bind('mouseleave', function() {
			if (new_url != orig_url) {

			$(".attribute-image img").attr("src", orig_url);
			}
		});
	});

/******************************************************************/

});

$("a.login").toggle(
  function () {
    $("#login").slideToggle("fast");
    $("a.login").addClass("login-active");
  },
  function () {
    $("#login").hide();
    $("a.login").removeClass("login-active");
  }
);

/*
	$(document).ready(function() {
	$("a[rel]").overlay({
		effect: 'apple',
		mask: '#789'
	});
	});
*/





