/**
 * @package Social Slider for Joomla! 1.5
 * @version  1.0.1 10/06/2010
 * @author Crew Themes | Josh Miller
 * @copyright (C) 2010- Crew Designs LLC
 * @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
**/

var name                    = "#social-slider-menu";
var sidebar_top_limit       = 273;
var sidebar_top_margin      = 20;
var sidebar_slide_duration  = 500;


jQuery(window).scroll(function() {
 
	offset = jQuery(document).scrollTop() + sidebar_top_margin;
	 
	if(offset < sidebar_top_limit)
	    offset = sidebar_top_limit;
	 
	jQuery(name).animate({top:offset},{duration:sidebar_slide_duration,queue:false});
	
});

