var $st = jQuery.noConflict();

// initialize the jquery code
$st(document).ready(function(){
	//close all the content divs on page load
	$st('.mover, .mover2').hide();
	// toggle slide
	$st('#slideToggle, #slideToggle2').click(function(){
	// by calling sibling, we can use same div for all demos
	$st(this).siblings('.mover, .mover2').slideToggle();
	});
	//animate
	$st('#animate').click(function() {
	$st(this).siblings('.mover, .mover2')
	.slideDown(5500).fadeOut(7300);
	}); 
});