// Tous droits réservés © 2011+
// http://www.RenePaul.net & http://blogsideofficiel.blogspot.com
// v2011.01

jQuery.noConflict(); //http://docs.jquery.com/Using_jQuery_with_Other_Libraries
//$(document).ready(function(){
jQuery(document).ready(function($){

var tempo;

//ONLOAD
	$("img[src*='flipcorner.gif']").each(function(){
		tempo=$(this).parent();
		tempo.css({position:"relative"});
		$(this).css({bottom:"4px"});
		//if(location.hostname.match(/blogspot\.com/)){$(this).css({bottom:"5px"})} //5px par défaut
		//else{$(this).css({bottom:"4px"})} //sur RenePaul.net (et autres) ???
		//if(tempo.css("float")!="none"){$(this).css({bottom:"6px"})}
	});
	
});

