/*
* wüstenrot
* standard.js
*
* Author: JvM/Neckar
* Date: Januar 2010
*/


$(document).ready(function(){
	
	$('.contactBox a').hover(
		function(){
			var oldSrc = $('img',this).attr( 'src' );
			$('img',this).attr( 'src', $(this).attr('rel') );
			$(this).attr('rel',oldSrc);
		},
		function(){
			var oldSrc = $('img',this).attr( 'src' );
			$('img',this).attr( 'src', $(this).attr('rel') );
			$(this).attr('rel',oldSrc);
		}
	);

	
	$('.navigationA a').hover(
		function(){
			var oldSrc = $('img',this).attr( 'src' );
			$('img',this).attr( 'src', $(this).attr('rel') );
			$(this).attr('rel',oldSrc);
		},
		function(){
			var oldSrc = $('img',this).attr( 'src' );
			$('img',this).attr( 'src', $(this).attr('rel') );
			$(this).attr('rel',oldSrc);
		}
	);
	
	$('.button a').hover(
		function(){
			var oldSrc = $('img',this).attr( 'src' );
			$('img',this).attr( 'src', $(this).attr('rel') );
			$(this).attr('rel',oldSrc);
		},
		function(){
			var oldSrc = $('img',this).attr( 'src' );
			$('img',this).attr( 'src', $(this).attr('rel') );
			$(this).attr('rel',oldSrc);
		}
	);
	
	$('.formItemSubmit .formField span').hover(
		function(){
			var oldSrc = $('input',this).attr( 'src' );
			$('input',this).attr( 'src', $(this).attr('rel') );
			$(this).attr('rel',oldSrc);
		},
		function(){
			var oldSrc = $('input',this).attr( 'src' );
			$('input',this).attr( 'src', $(this).attr('rel') );
			$(this).attr('rel',oldSrc);
		}
	);
	
	
	$('.containerInfo .textBox a').hover(
		function(){
			
			$(this).parent().parent().parent().addClass('hover');
			
			var oldSrc = $('img',this).attr( 'src' );
			$('img',this).attr( 'src', $(this).attr('rel') );
			$(this).attr('rel',oldSrc);
		},
		function(){
			
			$(this).parent().parent().parent().removeClass('hover');
			
			var oldSrc = $('img',this).attr( 'src' );
			$('img',this).attr( 'src', $(this).attr('rel') );
			$(this).attr('rel',oldSrc);
		}
	);

});

