$(document).ready(function() {

	jQuery('.slideshow').cycle({ 
    fx:     'fade', 
    speed:  'slow', 
    timeout: 4000, 
    pager:  '#nav',
	 random: true
});
	

	if (typeof $.fn.fancybox != "undefined") {						
		$("a.fancybox, a[rel=lightbox]").fancybox({
			'transitionIn'	:	'elastic',
			'transitionOut'	:	'elastic',
			'speedIn'		:	600, 
			'speedOut'		:	300, 
			'overlayShow'	:	true
		});
	}
	
	
	var defaultInputValueDe = 'E-Mail Adresse eintragen';
	jQuery('#newsletter-quick input.email-input').focus(function() {
		if (jQuery(this).val() == defaultInputValueDe) {
			jQuery(this).val("");
		}
	});
	jQuery('#newsletter-quick input.email-input').blur(function() {
		if (jQuery(this).val() == "") {
			jQuery(this).val(defaultInputValueDe);
		}
	});
	
});
