jQuery(document).ready(function($) {

	$('.sidebarA ul.shopp_categories>li>a').toggle( 
		function() {
			$(this).parent().siblings().find('ul.children').hide(100);
			$(this).parent().siblings()
				.css('background', "url('http://sowtrue.com/wp-content/themes/celeste-theme/images/left.png') top right no-repeat");
			$(this).next().show('slow');
			$(this).parent()
				.css('background', "url('http://sowtrue.com/wp-content/themes/celeste-theme/images/down.png') top right no-repeat");
		},
		function() {
			$(this).next().hide(100);
			$(this).parent()
				.css('background', "url('http://sowtrue.com/wp-content/themes/celeste-theme/images/left.png') top right no-repeat");
		}
	);
	
	$('#shopp ul.variations select').find('option').each( function () {
		var optionstr = $(this).html();
		if( optionstr.length > 50 ) {
			optionstr = optionstr.substr(0,30) + '...' + optionstr.substr(35, optionstr.length);
			$(this).html(optionstr);
		} 
	});

});