﻿  $.noConflict();
  jQuery(document).ready(function($) {
	$(document).ready(function() {
	  $('div.demo-show h3').add('div.demo-show2 h3').hover(function() {
		$(this).addClass('hover');
	  }, function() {
		$(this).removeClass('hover');
	  });
	});

	// independently show and hide
	$(document).ready(function() {
	  $('div.demo-show:eq(0) > div').hide();  
	  $('div.demo-show:eq(0) > h3').click(function() {
		$(this).next().slideToggle('slow');
	  });
	});

	// one showing at a time

	$(document).ready(function() {
	  $('div.demo-show:eq(1) > div:gt(0)').hide();  
	  $('div.demo-show:eq(1) > h3').click(function() {
		$(this).next('div:hidden').slideDown('slow')
		.siblings('div:visible').slideUp('slow');
	  });
	});
  });
