// JavaScript Document

$(document).ready(function(){ // jQuery initialization

				
// Begin jQuery script for horizontal accordion/drawers

    rightDrawer = $("#one");
    maxWidth = 296; //ajv changed on Jan 28, 2009
    minWidth = 104;	//change to make collapsed drawers smaller.

    $("div#features ul li a").hover(
      function(){ 
        $(rightDrawer).animate({width: minWidth+"px"}, { queue:false, duration:800 });
	$(this).animate({width: maxWidth+"px"}, { queue:false, duration:800});
	rightDrawer = this;
      },
	 function(){}
    );

// End jQuery script for horizontal accordion/drawers


});
    
