/*Accordion File
* The only settings you should need to change here are the maxWidth and minWidth values
*/
jQuery(document).ready(function(){
    lastBlock = jQuery("expanded");
    maxWidth = 275;
    minWidth = 90;	

    jQuery("ul.badges li a").hover(
      function(){
	    jQuery("ul.badges li a#expanded").animate({width: minWidth+"px"}, {queue:false, duration:400 });
		jQuery("ul.badges li a#expanded").removeAttr("id");
        jQuery(lastBlock).animate({width: minWidth+"px"}, { queue:false, duration:400 });
        jQuery(lastBlock).removeAttr("expanded");
	jQuery(this).animate({width: maxWidth+"px"}, { queue:false, duration:400});
	lastBlock = this;
      }
    );
});
