// jQuery_accordion

// copyright (c) 2007 RedLine Magazine
// Licensed under the MIT License:
// customize: Takashi Hirasawa (http://css-happylife.com/)

jQuery.noConflict();  
var j$ = jQuery;

j$(document).ready(function() {
	j$("div.tabContainer dt").hover(function(){
		j$(this).css("cursor","pointer"); 
	},function(){
		j$(this).css("cursor","default"); 
		});
	j$("div.tabContainer dd").css("display","none");
	j$("div.tabContainer dt").click(function(){
		j$(this).next().slideToggle("normal");
		});
});



// jQuery_Auto 0.9
// Automatic functions for webpages (using the wonderful jQuery library)

// Copyright: (c) 2006, Michal Tatarynowicz (tatarynowicz@gmail.com)
// Licenced as Public Domain (http://creativecommons.org/licenses/publicdomain/)
// $Id: jquery_auto.js 426 2006-05-06 19:54:39Z Michał $

// customize: Takashi Hirasawa (http://css-happylife.com/)

// Initialization

