Shadowbox.init({
	skipSetup: true,
	language: 'no'
});

$(document).ready(function(){
	//shadowbox
	Shadowbox.setup("a:has(img.size-medium), a:has(img.size-full)", {
        gallery:            "postimages",
        autoplayMovies:     true
    });
	Shadowbox.setup(".gallery a:has(img.attachment-thumbnail)", {
        gallery:            "postgallery",
        autoplayMovies:     true
    });

	//sponsors
	$(".sponsor span").fadeTo(0, 0);
	$(".sponsor span").hover(function() {
		$(this).fadeTo(150, 1);
	}, function() {
		$(this).fadeTo(350, 0);
	});
	
	//byline
	$("#byline a em").css('visibility', 'visible');
	$("#byline a em").hide();
	$("#byline a").hover(function(){
		$("#byline a em").fadeIn();
	}, function(){
		$("#byline a em").fadeOut();
	});
});