
/*
function checkContactForm () {
    
    if ($('#name').val() == '') {
        alert ('Bitte gib Deinen Namen an!');
        $('#name').focus();
        return false;
    }
    
    if ($('#email').val() == '') {
        alert ('Bitte gib Deine Email-Adresse an!');
        $('#email').focus();
        return false;
    }
    
    if ($('#message').val() == '') {
        alert ('Bitte gib eine Nachricht ein!');
        $('#message').focus();
        return false;
    }
    
    return true;
    
}
*/


$(document).ready(function(){
	
    $('.scroll').each(function(){
        $(this).removeClass('scroll');
        $(this).addClass('ivScrollable');
    });
	window.setTimeout("objIvScrollable.ivMakeScrollable();", 200);
    
    $('.removeDashes').each(function(){
        $(this).text($(this).text().replace(/_|-/g, ' '));
    });

    $('.fileDownload a').each(function(){
        $(this).attr('title', $(this).attr('title').replace(/_|-/g, ' '));
    });
    
    window.setTimeout("initGuestbookLink();", 200);
    
	
});

function initGuestbookLink () {
    
    $('#guestbook_toggle').click(function(){
        $('#guestbook_formular').toggle(300);
        return false;
    });
    
}

