﻿$(document).ready(function() {

	initPage();

});

function initPage() {

	//add first class to first top menu item
	$("#header-navigation li:first").addClass("first");

	//add hover background image to top menu corner 
	$("#header-navigation li:first").mouseover(function() {

		$("#header-navigation-start").addClass("hover");

	});


	//remove hover background image to top menu corner on mouse out
	$("#header-navigation li:first").mouseout(function() {

		//only remove hover-bg if not on first page
		if($("#header-navigation li:first").hasClass("active") == false)
			$("#header-navigation-start").removeClass("hover");

	});


	//add hover bg for first page
	if ($("#header-navigation li:first.active a").length > 0)
		if ($("#header-navigation li:first.active a").css('background-image').indexOf("hover") != -1)
		{
			$("#header-navigation-start").addClass("hover");
		}

}


//Fix for sidebar share information image
if(document.getElementById("ShareImageControlID_DyImage"))
{
    document.getElementById("ShareImageControlID_DyImage").style.cursor = "pointer";
    document.getElementById("ShareImageControlID_DyImage").onclick = function() {location.href = "/web/Aktieinformation.aspx"; };
}