function openPress(sLang)
{
	if (typeof(sLang) == 'undefined')
	{
		sLang = 'nl';
	}

	wPress = window.open('/press/?lang='+sLang,'pressmsg','width=800,height=800');
	wPress.focus();
}

$(document).ready(function()
{
	/* lightbox laden als deze beschikbaar is */
	if (jQuery().lightBox)
	{
		$('a[rel]').lightBox({fixedNavigation:true});
	}

	/* pngfix voor wedstrijdhomepage IE6 */
	if ($.browser.msie == true && parseInt($.browser.version) == 6)
	{
		var sFilter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/gfx/homepage/camera.png')";
		$('div#camera img').attr('src','/gfx/homepage/pixel.gif').css('filter', sFilter);
	}
});


var iCurrent = 0;

function changeRallyPhoto()
{
	var iRandom = parseInt(Math.random() * (aPhotos.length-1))
	var sPhoto = aPhotos[iRandom];

	$('div#photo').fadeOut('fast', function()
	{
		$(this).css('backgroundImage', "url('"+sPath+sPhoto+"')").fadeIn('fast');
		setTimeout(changeRallyPhoto, 3000);
	});
}