/* JavaScript Document */
/* sliderAction.js */

/* Requires: jquery-1.3.1.js */

 $(document).ready(function(){
	$('a.sliderLink').click(function(event){
	   	event.preventDefault();
		if ($(this).children('.sliderTitle').hasClass('on')) {
			$(this).children('.sliderTitle').removeClass('on');
			$(this).children('.sliderTitle').addClass('off');
			$(this).siblings('.sliderBody').hide(500);
		} else {
			$(this).children('.sliderTitle').removeClass('off');
			$(this).children('.sliderTitle').addClass('on');
			$(this).siblings('.sliderBody').show(500);
		}
		return false;
	});
 });
 
