var corrected_once = false;

$(function () {
	window.setTimeout(function(){randomPic(0);},2000);
	window.setTimeout(correctPage,1000);
});

function randomPic (p)
{
	p = p+1;
	var pp = parseInt(Math.random()*20)+1;
	$('#p'+p).attr('src','img/main/p'+pp+'.jpg');
	window.setTimeout(function(){randomPic(p%4);},2000);
}

function correctPage()
{
	$('#menu').height($('#content').height()+'px');
	if( jQuery.browser.msie && jQuery.browser.version=='6.0' && !corrected_once)
		$('#header a img').attr('src',$('#header a img').attr('src').replace('.png','2.png'));
	corrected_once = true;
}