$(document).ready(function(){
$("a[rel='ba_pics']").colorbox({
  //transition: "fade",
  speed: 500,
  current: "{current} of {total} Before and After Photos"
});



$('#faqList > li > ul')
	.hide()
	.click(function(e) {
		e.stopPropagation();
	});
	
$('#faqList > li').toggle(function() {
	$(this)
	.css('background-position', 'left -25px')
	.find('ul').slideDown();
}, function() {
	$(this)
	.css('background-position', 'left top')
	.find('ul').slideUp();
});


});


