﻿
$(document).ready(function(){
	
	$("a#slideToggle").click(function(){
		$(this).next().slideToggle('slow');
	});
	
	$("a#fadeIn").click(function(){
		$(this).next().fadeIn('slow');
	});

	$("a#fadeOut").click(function(){
		$(this).next().fadeOut('slow');
	});
	
	$("a.animate").click().toggle(function(){
		$(this).next().animate({
			height: 'show',
			opacity: 'show'
		}, 'slow');
	}, function() {
		$(this).next().animate({
			height: 'hide',
			opacity: 'hide'
		}, 'slow');
	});
	$("#tabs").tabs({ selected: 0 });

});