$(document).ready(function(){

	jQuery.preloadImages = function(){
		for(var i = 0; i<arguments.length; i++){
			jQuery("<img>").attr("src", arguments[i]);
		}
	}
	
	$.preloadImages("/images/hirsch_braun.jpg", "/images/hirsch_beige.jpg","/images/hirsch_rot.jpg");
	
	
	if(navigator.userAgent.indexOf('MSIE 6') == -1){
		$.localScroll();
	}
		
	$('a').focus(function(){
		$(this).blur();
	});
	
	
	$('#contactform').submit(function(){
		lang = 'de';
		if($(this).attr('class') == 'contactform en') lang = 'en'; 
		
		var name = $('#f-name').val();
		var email = $('#f-email').val();
		var subject = $('#f-subject').val();
		var message = $('#f-message').val();

		if(name != '' && email != '' && subject != '' && message != ''){
		
		}
		else{
			
			alertmessage = lang == 'de' ? 'Bitte alle Felder ausf�llen' : 'Please fill out all fields';
			
			alert(alertmessage);
			return false;
		}
	});
	
	$('.shirtswitcher').each(function(){
		$(this).html('<img src="/images/blank.gif" height="33" width="33" />');
	});
	
	  $('.shirtswitcher').hover(function () { 
		
		color = $(this).attr('class');color = color.split(' ');color = color[1];
		$('#hirsch').attr('class','hirsch-'+color);
    });
	
});



