/*
 * fadein/fadeout avec survol et click sur une zone en jQuery 
 * Mathias Forbach for Angebault and Co
 */

jQuery.noConflict();
  jQuery(document).ready(function(){
    jQuery(".post_preview_home,.post_preview").hover(function(){
  jQuery(this).animate( { backgroundColor: '#BFD6B5' }, 300);},
    function(){
  jQuery(this).animate( { backgroundColor: '#ffffff' }, 300);
});

    jQuery(".post_preview_home,.post_preview").hover(function(){
  jQuery(this,".post_preview h3 a").animate( { Color: '#000000' }, 200);},
    function(){
  jQuery(this,".post_preview h3 a").animate( { Color: '#ffffff' }, 200);
});

jQuery(".post_preview_home,.post_preview").click(function(){
    	window.location=jQuery(this).find("a").attr("href");return false;
	});

});
  

