		
		$(document).ready( 
			function () {
				$('.stage').mousemove(
					function(e) {
						$('.stage .layer').each(
							function(index) {
								$(this).css({
										marginLeft 	:  ( ($(window).width()/2) - e.pageX ) * 0.25 // 0.125 oder 0.25 reduziert die verfuegbare breite 
								});
							}
						);

						$('.stage .layer div').each(
							function(index) {
								$('#'+this.className).css({
									left : $(this).offset().left
								})
							}
						)
					}
				);

		});
		
		$(window).bind( 
					'load resize', function () {
						
						$('.stage .layer div').each(
							function(index) {
								
								$('.stage').append('<div id="' + this.className + '" class="track" />');
								$('#' + this.className).css({
										border : 'solid 0px red',
										position : 'absolute',
										top    : $(this).offset().top,
										left   : $(this).offset().left,
										width  : $(this).width(),
										height : $(this).height()
									});
									
								$('#' + this.className).html('<a href="#' + this.className   + '"><img src="images/ts.gif" width="' + $(this).width() + '" height="' + $(this).height() + '" title="' + this.className + '" alt="' + this.className + '" /></a>');
							}
						);							
					}
		);
		

