

			jQuery(document).ready(function(){
				$('#inspiration_a').click(function() {

				  $('#inspiration').fadeIn();
				  $('#hilfe').hide();
					$('#inspiration_close').click(function() {
						$('#inspiration').fadeOut();
					});
					});

			});

			
			jQuery(document).ready(function(){
				$('#hilfe_a').click(function() {

				  $('#hilfe').fadeIn();
				  $('#inspiration').hide();
					$('#hilfe_close').click(function() {
						$('#hilfe').fadeOut();
					});
					});

			});



/*			jQuery(document).ready(function(){
					$('#inspiration').hide();
					$('#inspiration_a').click(function() {

					  $('#inspiration').toggle();
					});
				});	
				
				
				
			jQuery(document).ready(function(){

				$('#inspiration_q').cycle({ 
					fx:     'scrollHorz', 
					next:   '#next_q', 
					prev:   '#prev_q',
					timeout: 0
					
				});
			});
*/			
			
			
			
			jQuery(document).ready(function(){

				$("#filter ul li").append("<div></div>");
				
				$("#filter ul li").hover(function() {
					$(this).find("div").show();
					var hoverText = $(this).find("a").attr("alt");
					$(this).find("div").text(hoverText);
				}, function() {
					$(this).find("div").hide();
				});


			});
			
			jQuery(document).ready(function(){
				$('#alogin').click(function() {

				  $('#login').fadeIn();
					$('#close').click(function() {
						$('#login').fadeOut();
					});
					});

			});
			
			
			jQuery(document).ready(function(){

				
				$(".log")
					.mouseover(function() { 
						var id = $(this).attr("alt");
						$("#"+id).show();
				
					})
					.mouseout(function() {
						var id = $(this).attr("alt");
						$("#"+id).hide();
					
					});

				
				

			});
			

			// This adds 'placeholder' to the items listed in the jQuery .support object. 
			jQuery(function() {
			   jQuery.support.placeholder = false;
			   test = document.createElement('input');
			   if('placeholder' in test) jQuery.support.placeholder = true;
			});
			// This adds placeholder support to browsers that wouldn't otherwise support it. 
			$(function() {
			   if(!$.support.placeholder) { 
				  var active = document.activeElement;
				  $(':text').focus(function () {
					 if ($(this).attr('placeholder') != '' && $(this).val() == $(this).attr('placeholder')) {
						$(this).val('').removeClass('hasPlaceholder');
					 }
				  }).blur(function () {
					 if ($(this).attr('placeholder') != '' && ($(this).val() == '' || $(this).val() == $(this).attr('placeholder'))) {
						$(this).val($(this).attr('placeholder')).addClass('hasPlaceholder');
					 }
				  });
				  $(':text').blur();
				  $(active).focus();
				  $('form:eq(0)').submit(function () {
					 $(':text.hasPlaceholder').val('');
				  });
			   }
			});

			
			
/*			$(document).ready(function(){

				$('#twitter ul').cycle({ 
				fx:    'fade', 
				timeout:  5000,
				pause:  1 
				});
			});
			
*/	
