/*-----------------------------------------------------------------------------------------------*/
/*                                      jQuery Effects -various- 			                     */
/*-----------------------------------------------------------------------------------------------*/


/* Newsletter slideToggle */
$(document).ready(function(){
    $('#newsletterform').hide();
        $('.newsletter').click(function() { $('#newsletterform').slideToggle("fast") });
    });
    
/* GoogleMaps slideToggle */
$(document).ready(function(){
    $('#googlemaps').hide();
        $('.googleshow').click(function() { $('#googlemaps').slideToggle("fast") });
    });    

/* TopScroll */
$(function () {
    $(window).scroll(function () {
        if ($(this).scrollTop() != 0) {
            $('#toTop').fadeIn();
        } else {
            $('#toTop').fadeOut();
        }
    });
    $('#toTop').click(function () {
        $('body,html').animate({
            scrollTop: 0
        },
        800);
    });
});
