$.fn.silverOaksSimpleDropDown = function(options){
	return this.each(function(){
		var dd = $(this);
		var defaultText = $(this).children(':eq(0)').text();
		$(this).children(':eq(1)').hide();
		$('a', $(this).children(':eq(1)')).each(function(){
			$(this).attr('dd-link', $(this).attr('href'));
			$(this).removeAttr('href');
		});
		$('a', $(this).children(':eq(1)')).click(function(){
			$('.go', dd).attr('href', $(this).attr('dd-link'));
			dd.children(':eq(0)').text($(this).text());
			dd.children(':eq(0)').click();
		});
		$(this).children(':eq(0)').click(function(){
			$(this).siblings(':eq(0)').toggle('fast');
		});
	});
};
