$(document).ready(function() {

	var total = $('.support-acc dd').size();

	$('.support-acc dt').each(function(index) {
		this.myIndex = index;
	});

	$('.support-acc').accordion({
		header: 'dt', 
		animated: 'easeslide'

	});

});

jQuery.fn.extend({
	scrollTo : function(speed, easing) {
		return this.each(function() {
			var targetOffset = 0;
			$('html,body').animate({scrollTop: targetOffset}, speed, easing);
		});
	}
});
