// main.js

// disable caching of AJAX responses
	
	$.ajaxSetup ({cache: false});

// kiwi fun factor

	var annoyance = 0;

// functions to be executed or allowed as soon as DOM is ready

	$(document).ready(function(){

		// jquery ui buttons -> standard

		$(function() {
			$( "input:reset, input:submit, button", "body" ).button();
			$( "button" ).click(function() { return false; });
		});

		// easteregg

			$('#kiwi').click(function(){
				if(annoyance == 3) {
					alert("Mir reicht's! Ich bin weg!")
					$(this).remove();
				} // if
				if(annoyance == 2){
					alert('Grrrrrrrrrrr! KRAAAH! KIWIIIIII!')
					annoyance++;
				} // if
				if(annoyance == 1){
					alert("Ich mein's ernst! Noch einmal und ich bin weg!")
					annoyance++;
				} // if
				if(annoyance == 0){
					alert('Krah, kiwiii! Lass mich in Ruhe!')
					annoyance++;
				} // if
			});

			$('#kiwi').draggable({ containment: 'footer' });

		// nav style

			$('nav').mouseover(function(){
				$(this)
					.animate({
						backgroundColor: '#4E7F5C'
					}, 150 );
			}).mouseleave(function(){
				$(this)
					.animate({
						backgroundColor: '#9CABA0'
					}, 150 );
			});

	}); // doc.rdy
