
//window.onload = function() {}

// -- UPDATE LE DIV IMG---w----------------------------------------------
function update(what, where){

	jQuery("#mainImg").fadeOut("slow",function(){
		document.getElementById(where).innerHTML = '<img src="'+what+'">';
		
		jQuery("#mainImg").ready(function(){
		jQuery("#mainImg").fadeIn("slow");

		});
	});	
}

// -- Generic functions --------------------------------------------------

function createXMLHttpRequest() {
	try { return new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) {}
    try { return new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) {}
	try { return new XMLHttpRequest(); } catch(e) {}
    alert("XMLHttpRequest not supported");
    return null;
}


//function $(id) {
//	return document.getElementById(id);
//}
