$(document).ready(function() {
		$('#loginform').ajaxForm({
				target: '#content'
		});
});

$.fn.wait = function(time, type) {
		time = time || 1000;
		type = type || "fx";
		return this.queue(type, function() {
				var self = this;
				setTimeout(function() {
						$(self).dequeue();
				}, time);
		});
};

function peopleimg(id)
{
	if(id != "")
	{
		$('#choosepeople').fadeIn("slow");
		$('#choosepeople').wait().html(('<img src="styles/default/images/pop'+id+'.png">'), 2000);
	}
}

function ballonimg(id)
{
	if(id != "")
	{
		$('#chooseballon').fadeIn("slow");
		$('#chooseballon').wait().html(('<img src="styles/default/images/'+id+'_box.png">'), 2000);
	}
}

function tekstballon(tekst)
{
	if(tekst != "")
	{
		var tekst = tekst.replace(/</, "");
		$('#choosetekst').fadeIn("slow");
		$('#choosetekst').html('" '+tekst+' "');
	} else {
		$('#choosetekst').html('');
	}
}