$(function(){
	$('#scrollframe').jScrollPane({
		reinitialiseOnImageLoad : true,
		// topCapHeight: 10,
		arrowSize : 10,
		showArrows : true,
		scrollbarWidth : 9
	// scrollbarMargin: -8
	});
	$('#images').carusse({
		effectSpeed : 2500,
		interval : 6000
	});
	$('.thumb').click(function(it){
		$('#statimg').attr('src', $(this).attr('href'));
		$('.curnt').removeClass('curnt');
		$(this).addClass('curnt');
		$(this).blur();
		return false;
	});
	$('.thumb:first').addClass('curnt');
	$('.gmap').colorbox({
		width : "500",
		height : "500",
		iframe : true
	});
	$(window).load(res).resize(res);
});

function res(){
	var dh = $('html').height();
	if(dh < 290){
		$('#horisont').css('margin-top', 0).css('top', 30);
	} else {
		$('#horisont').css('margin-top', -130).css('top', '50%');
	}
}

