$(document).ready(function() {
	//moved this to the destination index page so i could default a tab
	/*if ($('#sell_content')) {
		$('#sell_content').tabs({});
	}*/

	//setup the more link to open review tab
	$('a[@class=destination_index_review]').each(function(count)
	{
		$('a[@class=destination_index_review]:eq(' + count + ')').livequery('click', function()
		{
			$('#sell_content').triggerTab('student_reviews');
		});
	});

	if ($('#sell_description')) {
		$('#sell_description').hide();
		$('#sell_description_link').click(function() {
			$('#sell_description').slideToggle("slow");
			$('#sell_short_description').slideToggle("slow");
			if (this.getAttribute('text_size') == 'long') {
				this.setAttribute('text_size', 'short');
				$('#sell_description_link').text('view all');
			} else {
				this.setAttribute('text_size', 'long');
				$('#sell_description_link').text('minimize');
			}
			return false;
		});
	}

});