var http = false;
if(navigator.appName == "Microsoft Internet Explorer") {
    http = new ActiveXObject("Microsoft.XMLHTTP");
} else {
    http = new XMLHttpRequest();
}

/* ---------------------------- */
/* Nieuwsbrief Check	 		*/
/* ---------------------------- */  
function nieuwsbriefform(nieuwsbrief_naam, nieuwsbrief_email) {
    http.abort();
    http.open("GET", "http://www.montecervino.nl/lib/ninsert.php?naam=" + nieuwsbrief_naam + "&email=" + nieuwsbrief_email, true);
    
    http.onreadystatechange=function() {
        if(http.readyState == 4) {
            document.getElementById('nAresponse').innerHTML = http.responseText;
        }
        if(http.readyState == 1) {
            document.getElementById('nAresponse').innerHTML = '<img src="loading.gif" alt="Loading" />';
        }
    }
    http.send(null);
} 

/* ---------------------------- */
/* Addthis vars			 		*/
/* ---------------------------- */ 
var addthis_options = 'print, favorites, email, twitter, digg, google, linkedin, delicious, facebook, hyves';
var addthis_pub  	= 'montecervino';  

/* ---------------------------- */
/* Image Load			 		*/
/* ---------------------------- */ 
$("img").lazyload({ 
    placeholder : "img/grey.gif",
    effect : "fadeIn"
});


