$(document).ready(function(){
var thisTarget = "";

$('#SubMenyENHid').show();
var HTMLEN = $('#SubM').html();
$('.SubMeny').html(HTMLEN);

$('#MainMenySelected').css({color:"#c6d8de","font-weight":"bold"});


$('.introImages').hide();
$.preload('.introImages img',{
	onFinish:finishIntro,
	placeholder:'media/2444/intro%20bilde%206.jpg',//this is the really important option
	threshold:2 //'1' is the default, how many at a time, to load.			
});
function finishIntro(){//hide the summary

	$('.introImages').show();
	$('.introImages').cycle({
	fx: 'fade',
	timeout:1000,
	random: 0
	});
}		

});
