
//jQuery onReady

$(document).ready(function(){
$('.tx-comments-comment-form input').each(function(){
	$(this).val($(this).val().replace(/Ã¦/gi,'æ'));
	$(this).val($(this).val().replace(/Ã¸/gi,'ø'));
	$(this).val($(this).val().replace(/Ã¥/gi,'å'));
	
	$(this).val($(this).val().replace(/Ã/gi,'Å'));
	//$(this).val($(this).val().replace(/Ã¦/gi,'æ'));
	//$(this).val($(this).val().replace(/Ã¦/gi,'æ'));
});


$('.tx-feedforward-pi1 a:odd').addClass('even');

//carousel
if (jQuery("#jcarousel").size())
	jQuery("#jcarousel").carouFredSel({
	auto : {
		pauseDuration: 12000
		},
	prev : {	
		button	: "#jcarousel_prev",
		key		: "left"
	},
	next : { 
		button	: "#jcarousel_next",
		key		: "right"
	},
	pagination	: "#jcarousel_pag",
	scroll:1,
	//items:1,
	items:{
		start:"random"
	},	
	play:true

});

//dropdown links
$(".pulldownmenu").each(function(){
	$(this).find("select").change(function () {
      		$(this).children("option:selected").each(function () {
         		var Link = $(this).val();
         		if(Link != null) {
         		$(this).parents(".pulldownmenu").attr("action", Link);
         		$(this).parents(".pulldownmenu").submit();
         		}
      		});          
	});
});


}); // End jQuery onReady
