jQuery.noConflict();
(function($){

$(document).ready(function(){

	$('#faq .questions a').click(function(){
		var id = this.id.split('-')[1];
		$('#faq .answer').removeClass('answer-active');
		$('#question-' + id).addClass('answer-active');
		setTimeout(function(){
			window.scrollBy(0, ($.browser.msie ? -50 : -20));
		}, 20);
	});
	$('#faq a.top').click(function(){
		$('#faq .answer').removeClass('answer-active');
	});

	if ($.browser.msie) {
		try {document.execCommand("BackgroundImageCache", false, true);} catch(err){};
		if (typeof(DD_belatedPNG) != 'undefined')
		{
			DD_belatedPNG.fix('img, #side1');
		}
	}

});


})(jQuery);