$(document).ready(function() {
	if($('.slideshow').length > 0) {
		$('.slideshow').cycle({
			fx: 'fade',
			timeout: 7000,
			speed: 5000
		});
	}

    if($('.form-input input').length > 0) {
        
        $('.form-input input').focusin(function() {
            var e_str = this.name == 'email' ? 'E-mail' : '*****';
            if(this.value == e_str) {
                this.value = '';
            }
        });
        $('.form-input input').focusout(function() {
            var e_str = this.name == 'email' ? 'E-mail' : '*****';
            if(this.value == '') {
                this.value = e_str;
            }
        });
    }
});
