function goToURL(url) {
	window.location.href =  url;
}

$(document).ready(function(){
	if( document.getElementById('main-right-column-faq-content') ) {
		var msie6 = $.browser == 'msie' && $.browser.version < 7;
		if (!msie6)  {
			var top = $('#main-right-column-faq-content').offset().top - parseFloat($('#main-right-column-faq-content').css('margin-top').replace(/auto/, 0));
			$(window).scroll(function (event) {
			// what the y position of the scroll is
			var y = $(this).scrollTop();
	
			// whether that's below the form
			if (y >= top) {
				// if so, ad the fixed class
				$('#main-right-column-faq-content').addClass('fixed');
			} 
			else {
				// otherwise remove it
				$('#main-right-column-faq-content').removeClass('fixed');
			}
		 });
		}
	}
});

function getFAQItem( Item ) {

	var scrollTop = $(document).scrollTop();
	
	var url = "/festival/information/vanliga-fragor/"+Item+"/"+scrollTop+"/";
	
	goToURL(url);
}


