$(document).ready(function() {

	$("html").css("height", "100%");
	$("#main").center().css("top",(($("html").height()-$("#main").height())/2));

	$("#main").prepend("<a href='index.php' title='home' style='width: 956px; height: 74px; margin: 0px; padding: 0px;'><img id='topbanner' src='img/banner_perard_be.gif' style='width: 956px; height: 74px; border: 0px; margin: 18px;' alt='perard.be' /></a>");

	$("#main").animate({height: '593px',top: (($("html").height()-597)/2)},2000,'',function(){
		$("#main").append("<div id='msg' style='text-align: center; font-size: 1pt;'><p>Under construction</p></div>\n");
		$("#msg").animate({fontSize: '56pt'},2000,'',function(){
			$("#main").append("<div id='msg2' style='text-align: center; font-size: 1pt;'><p>Please come back in few days</p></div>\n");
			$("#msg2").animate({fontSize: '36pt'},2000,'',function(){
				$("#main").append("<div id='msg3' style='text-align: center; font-size: 1pt;'><p>Curriculum vitae available <a href='cv.pdf' title='CV'>here</a></p></div>\n");
				$("#msg3").animate({fontSize: '36pt'},2000);
			});
		});
	});








// $("#topbanner").center({vertical: false})

//   for ( var i = 1; i <= 5; i++ )
//     $("#rating").append("<a href='#'>" + i + "</a> ");
//   
//     $("#rating").append("<a href='#'>" + 15 + "</a> ");
//   // add markup to container and apply click handlers to anchors
//   $("#rating a").click(function(e){
//     // stop normal link click
//     e.preventDefault();
//     
//     // send request
//     $.post("rate.php", {rating: $(this).html()}, function(xml) {
//       // format and output result
//       $("#rating").html(
//         "Thanks for rating, current average: " +
//         $("average", xml).text() +
//         ", number of votes: " +
//         $("count", xml).text()
//       );
//     });
//   });
 }); // ENDOF $(document).ready(function() {


