$(document).ready(function() {
 var value = $.jqURL.get('feature');
 if (value) $('.pfeat' + value).show(400, function() { $.scrollTo('h3.feat'+value+':eq(0)', 800); } );
 
 
 $('h3[class^=feat]').click(function() {
   var $this = $(this);
   var x = $this.attr("className");
   // if (!$('.p' + x).is(':visible')) var scroll = true;
   $('.p' + x).toggle(400);
   $.scrollTo( '.'+x+':eq(0)', 800);
 });
});
