// collapsible specfication listings
$(document).ready(function() {
	$('#specList').find('dd.specs').hide().end().find('dt.specTitle').click(function() {
 		var answer = $(this).next();
         if (answer.is(':visible')) {
			//question.css({background: 'url("/img/general/arrow-open.gif") no-repeat 530px center'});
             answer.slideUp(100);
        } else {
 			$("dd.specs:visible").slideUp(100).end();
           answer.slideDown(100);
			//question.css({background: 'url("/img/general/arrow-close.gif") no-repeat 520px center'});
         }
     });
	//$('#specList').find('dd.open').slideDown(100);
	//$('#specList').find('dt.open > a').css({background: 'url("/img/general/arrow-close.gif") no-repeat 520px center'});
});


$(document).ready(function() {
	$('a.expand').click(function() {
	  $('#specList').find('dd.specs').show();
	 // $('#specList').find('dt > a').css({background: 'url("/img/general/arrow-open.gif") no-repeat 530px center'});
	});
	$('a.collapse').click(function() {
	  $('#specList').find('dd.specs').hide();
	 // $('#specList').find('dt > a').css({background: 'url("/img/general/arrow-close.gif") no-repeat 520px center'});
	});
	$('a').click(function() {
	  this.blur();
	});
});
