$(document).ready(function() {
if (navigator.appName  == "Microsoft Internet Explorer")
{
$("div#makeMeScrollable").smoothDivScroll({scrollingSpeed: 12, mouseDownSpeedBooster: 3, autoScroll: "mouseover", autoScrollDirection: "backandforth", autoScrollSpeed: 0, visibleHotSpots: "always", hotSpotsVisibleTime: 2, startAtElementId: "startAtMe"});
$(".bildeIngress").hover(
function () {
$(this).animate({
opacity: 0.8
}, 1000, function() {
// Animation complete.
});
},
function () {
$(this).animate({
opacity: 0
}, 1000, function() {
// Animation complete.
});
}
);
}
else
{
$("div#makeMeScrollable").smoothDivScroll({scrollingSpeed: 12, mouseDownSpeedBooster: 3, autoScroll: "mouseover", autoScrollDirection: "backandforth", autoScrollSpeed: 0, visibleHotSpots: "onstart", hotSpotsVisibleTime: 2, startAtElementId: "startAtMe"});
$(".scrollingHotSpotRight").hover(
function () {
$(this).css({'background-image' : 'url("/nrweb/cms.nsf/mediaresources/tema_pil_hoyre.png/$file/tema_pil_hoyre.png")', 'background-repeat' : 'no-repeat'});
$(this).animate({
opacity: 1
}, 1000, function() {
// Animation complete.
});
},
function () {
$(this).animate({
opacity: 0
}, 2000, function() {
$(this).css({'background-image' : 'none'});
});
}
);
$(".scrollingHotSpotLeft").hover(
function () {
$(this).css({'background-image' : 'url("/nrweb/cms.nsf/mediaresources/tema_pil_venstre.png/$file/tema_pil_venstre.png")', 'background-repeat' : 'no-repeat'});
$(this).animate({
opacity: 1
}, 1000, function() {
// Animation complete.
});
},
function () {
$(this).animate({
opacity: 0
}, 2000, function() {
$(this).css({'background-image' : 'none'});
});
}
);
$(".bildeIngress").hover(
function () {
$(this).animate({
opacity: 1
}, 1000, function() {
// Animation complete.
});
},
function () {
$(this).animate({
opacity: 0
}, 1000, function() {
// Animation complete.
});
}
);
}
});


