/**************************************
*  GUI functions tool kit 
*  required jQuery
*      
* author:  erational(http://www.erational.org)
* version: 0.3
* date:    2011.02.07 - 葛飾区 !
* licence: GPL 2.0    
***********************************/


$(document).ready(function(){
  //
   // gestion des blocs previews
   //
   $(".preview").hover(    
    	function(){	
        $(this).css("background","#ECF4F8");     
    	},
    	function(){
         $(this).css("background","#FFFFFF"); 
    	}
    );
    
   $(".preview").click(    
    	function(){
        var murl = $(this).children("h2").children("a").attr("href");
        if (murl)
             window.location = murl;
        return false;
    	}
    );
    
     
}); 




