/*

$(window).load(function() {
	if ($('#debutHeader').length)
	{
		$('#debutHeader').liquidCanvas('specificGradient{from:rgba(0,0,255,1);to:rgba(255,0,0,1);direction:\"v\"} => rect');

	}
});

$(window).load(function() {
	if ($('#debutBody').length)
	{
		$('#debutBody').liquidCanvas('specificGradient{from:rgba(255,0,0,1);to:rgba(0,0,255,1);direction:\"v\"} => rect');

	}

});

*/



$(window).load(function() {


	$('.lineRoundedCornersCell').wrapInner('<div class="lineRoundedCorners">');
	$('.lineRoundedCorners').wrapInner('<div class="temp">');
	var test=0;
	$('.lineRoundedCorners').each(function (i){if (this.offsetHeight > test) {test = this.offsetHeight} });
	$('.lineRoundedCorners').css('height',test);

	//var myBorder = RUZEE.ShadedBorder.create({ corner:8,border:1,edges:"tlr"});
	var myBorder = RUZEE.ShadedBorder.create({ corner:8,border:1 });
	myBorder.render($('.lineRoundedCorners'));

});


$(window).load(function() {
	if ($('#coloneGauche').length)
	{
		$('#coloneGauche').wrapInner('<div id="coteGauche">');
		$('#coteGauche').css('height',$('#coloneGauche').height());
		$('#coteGauche').liquidCanvas('specificGradient{from:rgba(255,255,255,1);to:rgba(204,204,204,1);direction:\"v\"} => rect');
	}
});