//This file contains the main function for the main content slider script
$(document).ready(function(){
	$(".btn-slide2").click(function(){
		$("#panel2").slideToggle("slow");
		$(this).toggleClass("active2");
	return false;
	});
});



