// JavaScript Document

	$(document).ready(function() {
	   
	   $("#download a").click(function(){
			  alert('Bientot!');
			  return false
		 })
	   


//	$("#cssmw li ul").hide(); 
//
//	$("#cssmw li").hover(
//        function () {
//		$(this).children("ul").show();
//        },function(){
//		$(this).children("ul").hide();
//	});//hover
						   
  var toggle = function(direction, display) {
    return function() {
      var self = this;
      var ul = $("ul", this);
      if( ul.css("display") == display && !self["block" + direction] ) {
        self["block" + direction] = true;
        ul["slide" + direction]("fast", function() {
          self["block" + direction] = false;
        });
      }
    };
  }
  $("li.parent").hover(toggle("Down", "none"), toggle("Up", "block"));
  $("li.parent ul").hide();

Cufon.now();

	  });



/*** Cufon ***/
/** ----------------------------------------------------- **/

Cufon.replace(
	
	'#content h1,' +
	'#content h2,' +
	'#column ul li a' 
				  
,{ fontFamily: 'Romance Fatal Serif', hover: true });


