/*
 * Fade Slider Toggle plugin
 * 
 * Copyright(c) 2009, Cedric Dugas
 * http://www.position-relative.net
 *	
 * A sliderToggle() with opacity
 * Licenced under the MIT Licence
 */
jQuery.fn.fadeSliderToggle=function(a){a=jQuery.extend({speed:500,easing:"swing"},a);caller=this;if($(caller).css("display")=="none"){$(caller).animate({opacity:1,height:"toggle"},a.speed,a.easing)}else{$(caller).animate({opacity:0,height:"toggle"},a.speed,a.easing)}};