$(document).ready(function() {


//install player for audio
$f(".flowPlayerAudio","assets/flash/flowplayer-3.2.0.swf", {
cachebusting: true,
clip: {
	autoPlay: false, 
	loop: false, 
	autoBuffer: false, 
	baseUrl: "http://www.birgitnilsson.com/"
}, 
plugins: {
	controls: {
		autoHide: false,
		height: '22px'
	}
}, 
onBeforeUnload: function() {
	return false;
},
onBeforeClick: function() {
	return true;
},
onBeforeLoad: function() {
	return true;
}
});


//install player for video
$f(".flowPlayerVideo","assets/flash/flowplayer-3.2.0.swf", {
cachebusting: true, 
clip: {
	autoPlay: false, 
	loop: false, 
	autoBuffer: false, 
	baseUrl: "http://www.birgitnilsson.com/"
}, 
plugins: {
	controls: {
		autoHide: false,
		height: '22px'
	}
}, 
onBeforeUnload: function() {
	return false;
},
onBeforeClick: function() {
	return true;
},
onBeforeLoad: function() {
	return true;
}
});


//load all players
$f("*").each(function() {
	this.load();
});

});
