jQuery(function( $ ){
	
	Shadowbox.init();
	
	if( $("#logobox h1 a").html()=="Center for divine straightening" || $("#logobox h1 a").attr("href")=="en.html"){
		$("#logobox h1").addClass("english");
	}
	
	$("#navigationul li").hover(function(){
		$(this).find("ul").show();
	}, function(){
		$(this).find("ul").hide();
	});
	
	$("#logobox h1").css({"cursor":"pointer"});
	$("#logobox h1").click(function(){
		window.location = $(this).find("a").attr("href");
	});
	
	$("h2").each(function(){
		if($(this).html()=='&nbsp;') $(this).html("");
	});
	
	$(".news-latest-container div a").attr("href",$(".news-latest-container div a").attr("href")+"#c76");
	
	if($("#wochengedanke h2").height() < 21) $("#wochengedanke h2").css( {"padding":"13px 0 0"} );
	
	$(".hassub").css({"cursor":"default"});
	$(".hassub").click(function(){ return false; });
	$(".hassub").each(function(){ $(this).attr("href","#"); });
	
	if($("#contactrightform").length>0){
		lang = 'de';
	} else {
		lang = 'en';
	}
	/*
	if($("#contactrightform\\.firstname").val()=='Ihr Name (Pflichtfeld)') lang = 'de';
	if($("#contactrightform\\.firstname").val()=='Your name (required)') {
		lang = 'en'
//		var url = $("#logobox").find("h1").css("background-image").split(".gif");
//		$("#logobox").find("h1").css({"background-image":url[0] + '_' + lang + '.gif' + url[1]});
	};*/
	
	$("#contactrightform\\.submit").click(function(){
		if($("#contactrightform\\.firstname").val()=='Ihr Name (Pflichtfeld)') $("#contactrightform\\.firstname").val('');
//		if($("#contactrightform\\.phone").val()=='Ihre E-Mail (Pflichtfeld)') $("#contactrightform\\.phone").val('');
		if($("#contactrightform\\.message").text()=='Nachricht') $("#contactrightform\\.message").text('');
		return false;
	});
	
	$("#contactrightformen\\.submit").click(function(){
	
		console.log($("#contactrightformen\\.message").text());
	
		if($("#contactrightformen\\.firstname").val()=='Your name (required)') $("#contactrightformen\\.firstname").val('');
//		if($("#contactrightformen\\.phone").val()=='Your email (required)') $("#contactrightformen\\.phone").val('');
		if($("#contactrightformen\\.message").text()=='Message') $("#contactrightformen\\.message").text('');
		return false;
	});
	
	$("#contactrightform\\.firstname").focus(function(){
		if($(this).val()=='Ihr Name (Pflichtfeld)') $(this).val('');
		if($(this).val()=='Your name (required)') $(this).val('');
	}).blur(function(){
		if(lang=='de') {
			if($(this).val()=='') $(this).val('Ihr Name (Pflichtfeld)');
		} else if(lang=='en') {
			if($(this).val()=='') $(this).val('Your name (required)');
		}
	});
	$("#contactrightform\\.email").focus(function(){
		if($(this).val()=='Ihre E-Mail (Pflichtfeld)') $(this).val('');
		if($(this).val()=='Your email (required)') $(this).val('');
	}).blur(function(){
		if($(this).val()=='') $(this).val('Ihre E-Mail (Pflichtfeld)');
		if(lang=='de') {
			if($(this).val()=='') $(this).val('Ihre E-Mail (Pflichtfeld)');
		} else if(lang=='en') {
			if($(this).val()=='') $(this).val('Your email (required)');
		}
	});
	$("#contactrightform\\.phone").focus(function(){
		if($(this).val()=='Telefon') $(this).val('');
		if($(this).val()=='Phone') $(this).val('');
	}).blur(function(){
		if(lang=='de') {
			if($(this).val()=='') $(this).val('Telefon');
		} else if(lang=='en') {
			if($(this).val()=='') $(this).val('Phone');
		}
	});	
	$("#contactrightform\\.message").focus(function(){
		if($(this).text()=='Nachricht') $(this).text('');
		if($(this).text()=='Message') $(this).text('');
	}).blur(function(){
		if(lang=='de') {
//			alert($(this).val());
			if($(this).val()=='') $(this).text('Nachricht');
		} else if(lang=='en') {
			if($(this).val()=='') $(this).text('Message');
		}
	});
	
	if($(".lb-gallery").length>0){
		//
	} else {
		//	
	}
		
});

window.onload = function() {
    // set up all anchor elements with a class to work with Shadowbox
	Shadowbox.setup("a.lightbox-link",{
		overlayOpacity: "0.9"
	});
};
