/**
 * jquery.js
 *
 * History:
 * - 2009-07-01 rr: Erstellt
 */

$(document).ready(function() {

	/* Suche */

	jQuery(function($) {
		$("#q").defaultvalue($("#q").attr('value'));
	});

	/* Navigation */

	$("li.nav").hover(function(){
		$(this).addClass('nav_hover');
	}, function() {
		$(this).removeClass('nav_hover');
	});

	/* Galerie */

    $('#imageContainer img').hide().filter(':first').show();

    $('#thumbContainer a').hover(function(event) {

            $('#imageContainer img').hide().filter(this.hash).show();
        },
        function () {}
    );

});