Shadowbox.init({
	skipSetup: true,
	language: 'nl',
	players: ['iframe']
});

Z.openPhoto = function(url) {
	Shadowbox.open({
		content: url,
		width: 610,
		height: 506,
		player: 'iframe'
	});
}

$(function(){
	
	if ($.browser.msie && $.browser.version < 7)
		$('img[src$=.png]').pngfix();

	$('img[hover],input[hover]').imghover();

	var photolisting = $('ul#photolisting');

	// Add stars
	$('<img src="images/crown.png" width="36" height="36" alt="Winnaar!" title="Winnaar!">')
		.css({
			position: 'absolute',
			left: '-8px',
			top: '-8px'
		})
		.pngfix()
		.appendTo(photolisting.find('li.star'));

	photolisting.paging();

	photolisting.find('a').click(function(){
		Z.openPhoto($(this).attr('href'));
		return false;
	});
});  
