$(document).ready(function () {

  $("#kontaktform").validate();
  
  //$.backstretch("vis/bg/bg.jpg");
	
	// Slider ------------------------------------
    $("#Slider").easySlider({
        auto: true,
        continuous: true,
		    controlsShow:	false,
    });	
	// Ende Slider -----------------------------------------
	// Placeholder Plugin
   function placeholder(){  
        $("input[type=text], input[type=password], textarea").each(function(){  
            var phvalue = $(this).attr("placeholder");  
            $(this).val(phvalue);  
        });  
    }  
  placeholder();
	$("input[type=text], input[type=password], textarea").focusin(function(){  
		var phvalue = $(this).attr("placeholder");  
		if (phvalue == $(this).val()) {  
		$(this).val("");
		}  
	});  
	$("input[type=text], input[type=password], textarea").focusout(function(){  
		var phvalue = $(this).attr("placeholder");  
		if ($(this).val() == "") {  
			$(this).val(phvalue);  
		}  
	});
	$("area").tooltip({ 
		track: true, 
		delay: 0, 
		showURL: false, 
		opacity: 0, 
		fixPNG: true, 
		showBody: " - ", 
		extraClass: "tooltip bluetext", 
		top: 20, 
		left: -62 
	}); 
	

});
