/*
* württembergische 
* standard.js
* 
* Author: Holger M. Stangl
* Company: Limeflavour | http://www.limeflavour.com
* 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 a').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);
		}
	);

});
