/*var obj = new Object ();
obj.ville = "Paris";

obj.dump = function () {
alert(this.ville);
}

obj.dump ();


var louis = new object ();
louis.nom = "dupond";
louis.ville = "liège";
louis.age = "25";

var txt = "";

$.each (louis, function (key, value) 
{
txt += key + "=" + value + "\n";
});

alert("lol");

function dump (louis) 
{
var txt =  "";
$.each (louis, function(key, value)
{
txt += key + " = " + value + "\n"
});
alert (txt);
}

var obj1 = {nom:"Dupond", prenom:"Louis"};
var obj2 = {
setAge : function (age)
{
this.age = age;
}
};

dump(obj1);

$.extend(obj1, obj2);
dump(obj1);

obj1.setAge (40);
dump(obj1);

----------

var t = new Array ();
t[10] = "Eric";
t.push ("Louis");

var txt = "";
$.each (t, function(index, value)
{
txt+="case numero " + index + " = " + value + "\n";
});
alert(txt);

---------

var a  = [1, 5, -10, -5];

var pos = $.grep(a, function(value, index)
{
if(value >= 0) return true;
});

alert(pos);

----------

var a = [0, 3, -12, 45, 63];

var lol = $.map(a, function (value, index){
if(value >= 0) return 2*value;
if(value <= -1) return 3*value;
});

alert(lol);

---------

var t1 = ["loli", "lol"];
var t2 = [1, 2];

var cool = $.merge(t1, t2);

alert(t1);
alert("c'est " + cool);

------

var x1 = [0, 1, 2, 3];

var x2 = $.merge ([], x1);

alert(x1);
alert(x2);

--------

var s1 = "lolil";
var s2 = "ol";

var s = s1 + s2;
alert(s);

--------

var txt = "";
$.each ("Eric", function(index, value){
txt+="["+index+"]"+"="+value+"\n"
});

alert(txt);

---------

var s1 = "      lol      ";
var s = $.trim(s1);
alert(s1);
alert(s);


---------

var obj = {nom:"Roger", prenom:"André"};
var sobj = $.param(obj);
alert(obj.nom);
alert(sobj);

-------------

var txt ="";
$.each($.browser, function(key, value){
txt += key + " = " + value + "\n";
});

alert(txt);

-------

if($.browser.mozilla == true) alert("Firefox");


*/
$(document).ready(function() {


$("table tr:nth-child(2n+0)").css({ "background-color":"#eeeeee" });


});























