$(document).ready(function(){
	$('#extra-text').hide();
	$('ul.controller').show();

	$('.controller .read-more a').click(function(){
		$(this).parent().fadeOut('fast');
		$('li.hide-this').fadeIn('slow');
		$('#extra-text').slideDown('fast');
	});
	
	$('.controller .hide-this a').click(function(){
		$(this).parent().fadeOut('fast');
		$('li.read-more').fadeIn('slow');
		$('#extra-text').slideUp('fast');
	});
});

//wpfx - jared hide the shipping quick hack
if (window.location.href.search('cart.php') != -1){
  jQuery(document).ready( function() {
    var l = jQuery('label[for="shippingid168"]').find('span');
    if (l.length > 0){
      if (l.text().search('$') != -1){
        jQuery('#shippingid169').parents('table:first').remove();
      }
    }
  }); 
}
//endwpfx
