function deblur(){
	$('a').click(function() {
		this.blur();
	});
}

function show(slidenr){
	// <a href=""><img src="homefiles/slides/0.jpg" border="0"></a>
	$('#loading').hide();
	if (currentselection == 0){
		$('#up').fadeIn('slow');
		$('#down').fadeIn('slow');
	}
	$('#slides').fadeOut('slow', function(){
		if (slidenr == 0){
			$('#slides').html('<a href="javascript:void(null);" onclick="show(1)"><img src="homefiles/slides/0.jpg" border="0"></a>');
		} else {
			$('#slides').html('<img src="homefiles/slides/' + slidenr + '.jpg" border="0">');
		}
		$('#slides').fadeIn('slow', function(){ 
			$('#loading').show();
		});
	});
	
	$('#c' + currentselection).fadeOut('slow', function(){ 
		$('#c' + slidenr).fadeIn('slow', function(){ 
			if (slidenr != currentselection){
				$('#b' + slidenr).addClass('selected');
				currentselection = slidenr;
			} 
		});
	});
	
	$('#b' + currentselection).removeClass('selected');
	
	return true;
}

function fwd(){
	if (currentselection < 12){
		show(currentselection+1);
	}
}

function bwd(){
	if (currentselection > 0){
		show(currentselection-1);
		if ((currentselection-1) == 0){
			$('#up').fadeOut('slow');
			$('#down').fadeOut('slow');
		}
	}
}

function isemail(s){
	var a = false;
	var res = false;
	if(typeof(RegExp) == 'function'){
		var b = new RegExp('abc');
		if(b.test('abc') == true){a = true;}
	}
	if(a == true){
		reg = new RegExp('^([a-zA-Z0-9\\-\\.\\_]+)(\\@)([a-zA-Z0-9\\-\\.]+)(\\.)([a-zA-Z]{2,4})$');
		res = (reg.test(s));
	} else {
		res = (s.search('@') >= 1 && s.lastIndexOf('.') > s.search('@') && s.lastIndexOf('.') >= s.length-5);
	}
 	if (!res){
		return false;
	} else {
		return true;
	}
}

function sendcontact(){
	var fn = $('#cname').val();
	var fc = $('#ccompany').val();
	var fm = $('#cmail').val();
	var ft = $('#ctel').val();
	
	if (fn != '' && fc != '' && fm != '' && ft != ''){
		
		if (isemail(fm)){
	
			$('#formmessages').html('Daten werden gesendet ...');

			$.post("homefiles/contact.inc.php", {fn: fn, fc: fc, fm: fm, ft: ft}, function(p_result) {
				if (p_result == 'success'){
					$('#formmessages').html('Daten gesendet. Wir werden Sie in Kürze kontaktieren.');
					$('#cname').val('');
					$('#ccompany').val('');
					$('#cmail').val('');
					$('#ctel').val('');
				} else {
					$('#formmessages').html('Fehler: ' + p_result);
				}
			});
			
		} else {
			
			$('#formmessages').html('Bitte geben Sie eine gültige Email-Adresse ein.');
			
		}
		
	} else {
		
		$('#formmessages').html('Bitte füllen Sie alle Felder aus.');
		
	}
	
}

function logininfo(){
	if (!lion){
		$('#topinfo').slideDown('slow');
		lion = true;
	} else {
		$('#topinfo').slideUp('slow');
		lion = false;
	}
}

currentselection = 0;
lion = false;
images = new Array("homefiles/slides/1.jpg", "homefiles/slides/2.jpg", "homefiles/slides/3.jpg", "homefiles/slides/4.jpg", "homefiles/slides/5.jpg", "homefiles/slides/6.jpg", "homefiles/slides/7.jpg", "homefiles/slides/8.jpg", "homefiles/slides/9.jpg", "homefiles/slides/10.jpg", "homefiles/slides/11.jpg", "homefiles/slides/12.jpg");

$(document).ready(function(){
	
	$('div.subcontent').hide();
	$('#topinfo').hide();
	$('#up').hide();
	$('#down').hide();
	
	deblur();
	
});

function imgload() {
	$.preload(images);
}

window.onload=imgload;
