﻿// hover effect
$(document).ready(function() {
	$('.Slider h3').hover(function() {
	$(this).addClass('hover');
		}, function() {
			$(this).removeClass('hover');
	});
});

// one showing at a time
$(document).ready(function() {
 //hide all but first one
 $('div.Slider:eq(0) > div:gt(0)').hide();
 // on clicking header, show that div and hide visible siblings
 $('div.Slider:eq(0) > h3').click(function() {
 $(this).next('div:hidden').slideDown('fast')
 .siblings('div:visible').slideUp('fast');
 });
});

