$(document).ready (function () {

	var windowHeight = window.innerHeight;

	//initiation
	init();
	function init() {
		if ($.browser.msie) {
			alert('Sorry, you may face browser compatibility problems');
		}

		$('body').show('slow');

		//divide .top-section and .bottom-section
		var topSectionPosition = (windowHeight-60)/2;
		$('.top-section').css('height', topSectionPosition + 'px');

		//IE hack for li:first-child
		$('ul li:first').css('margin-left', '0px');

	}

	$('#contact').click(function () {
		$('#mailaddress').fadeToggle('slow');
	})

	konami = new Konami()
	konami.load("http://plumming.blogspot.com");
})

