$(document).ready(function(){
	$('div.col_left h1.csc-firstHeader').html($('div.col_left h1.csc-firstHeader').text().replace(/\. Neuer/,'.<br/>Neuer'));

	$('div.expandable div.short').show();
	$('div.expandable div.long').hide();
	$('div.expandable div.short').click(function(){
		$(this).hide().next('div.long').show();
	});
	
	$('a.lightbox').lightbox( {navbarOnTop: 0 , resizeSpeed: 300 , overlayOpacity: 0.8, strings : { prevLinkTitle: 'vorheriges Bild', nextLinkTitle: 'n�chstes Bild', prevLinkText:  '', nextLinkText:  '',closeTitle: 'schließen', image: 'Bild', of: 'von'}});
	
	$('div.teaser a').click(function() {
		//$('div#hidden_lightbox_images dt a:first').trigger('click');
		$(this).closest('div.teaser').nextUntil('#hidden_lightbox_images').next().find('dt a:first').trigger('click');
		
		return false;
	});
	
	/*Kontaktformular*/
	if($('body').length) {
		var $value = $('select').val();
			if($value == 'Sonstiges'){
					$("label[for='mailformSonstiges']").show();
					$("textarea#mailformSonstiges").show();
			}
			else{
				$("label[for='mailformSonstiges']").hide();
				$("textarea#mailformSonstiges").hide();
			}
		//$(".page_575 label[for='mailformSonstiges']").hide();
		//$(".page_575 textarea#mailformSonstiges").hide();
		
		$('select').change(function () {
			var $value = $(this).val();
				if($value == 'Sonstiges'){
						$("label[for='mailformSonstiges']").show();
						$("textarea#mailformSonstiges").show();
				}
				else{
					$("label[for='mailformSonstiges']").hide();
					$("textarea#mailformSonstiges").hide();
				}
		
		});
	}
	/*Ende*/

});
