$(document).ready(function() {
	$('a.lightbox').lightBox({txtImage : 'Billede', txtOf : 'af'});

	$('.search .searchfield').keypress(function(e){
		fVal = $('.search .searchfield').val();
		if(e.which == 13){
			e.preventDefault();
			if (fVal != "" && fVal != "Indtast søgeord") {
				location.href='/soegning.aspx?search='+fVal;}
		}
	});
	$('.search .action').click(function(e){
		fVal = $('.search .searchfield').val();
		e.preventDefault();
		if (fVal != "" && fVal != "Indtast søgeord") {
			location.href='/soegning.aspx?search='+fVal;}
	});
});

$(window).load(function()
{
	init_slideshow()
})

init_slideshow = function()
{
	$('.slides').cycle({
		fx:'fade',
		timeout:8000,
		pager:'.slide_navigation',
		after:update_slide_caption,
		before:fade_slide_caption
	})
}

fade_slide_caption = function(next, previous)
{
	caption_container = $('.project_caption')
	caption_container.fadeOut('fast')
}

update_slide_caption = function(next, previous)
{
	caption_container = $('.project_caption')

	caption = $('span.slide_caption', previous)
	caption_container.fadeIn('fast')
	caption_container.html(caption.html())
}


