$(document).ready(function() { 	
//	$("#partnerbg div:odd").addClass("graybg");
	$("#partnerbg div.marker").hover(function() {
		$(this).addClass("divHover")
	},
	function() { 
		$(this).removeClass("divHover")
	});
	
	
	
	$("#restpostenCnt").fadeTo(1800, 1);
	
	$('#contentDiv1').crossSlide({
		  fade: 1
		}, [
		  {
		    src:  '../images/bg_ss.jpg',
//		    href: 'http://flickr.com/photos/spacetrucker/94209642/',
		    from: '100% 80% 1x',
		    to:   '100% 0% 1.7x',
		    time: 8
		  }, {
		    src:  '../images/fliesen1.jpg',
//		    href: 'http://flickr.com/photos/hichako/1125341449/',
		    from: 'top left',
		    to:   'bottom right 1.5x',
		    time: 8
		  }, {
		    src:  '../images/fliesen3.jpg',
//		    href: 'http://flickr.com/photos/jayniebell/1125216143/',
		    from: '100% 80% 1.5x',
		    to:   '80% 0% 1.1x',
		    time: 6
		  }, {
		    src:  '../images/fliesen4.jpg',
//		    href: 'http://flickr.com/photos/ruminatrix/1125292682/',
		    from: '100% 50%',
		    to:   '30% 50% 1.5x',
		    time: 8
		  }
		]);		
});

function editProduct( id ) {
	$("#eingabebereich").load( ajaxFormular, {
		    'id' : id
	});		
}

function validation() {

	em = $('#email').val(); 
    at = em.indexOf("@");
	bt = $('#betreff').val(); 
    nr = $('#nachricht').val();
	vname = $('#vorname').val();
	nname = $('#nachname').val();
			 
	if (em <= 0 || em.substring(at).indexOf(".") < 4) {
	alert('Bitte geben Sie eine gültige Email-Adresse an!');
	return false;
	}
	
	else if (bt.length <= 0) {
        alert('Bitte geben Sie einen Betreff ein!');
        return false;
    }
    
    else if (nr.length <= 0) {
    alert('Bitte geben Sie eine Nachricht ein!');
    return false;
	}
		
	$("#formular").load( ajaxSendAnfrage, {
						
		    'email[email]' : em,
		    'email[betreff]' : bt,
		    'email[nachricht]' : nr,
			'email[vorname]' : vname,
			'email[nachname]' : nname
	});			
}


