$(document).ready(function(){

	$( function() {
		$("img.rollover").hover(
			function() { this.src = this.src.replace("-off","-on"); },
			function() { this.src = this.src.replace("-on","-off"); }
		);
	});


	$(".btn1").click(function(){
		$("#content01").slideToggle('slow');
		$("#content02").hide();
		$("#content03").hide();
		$("#content04").hide();
		$("#content05").hide();
	});

	$(".btn2").click(function(){
		$("#content01").hide();
		$("#content02").slideToggle('slow');
		$("#content03").hide();
		$("#content04").hide();
		$("#content05").hide();
	});

	$(".btn3").click(function(){
		$("#content01").hide();
		$("#content02").hide();
		$("#content03").slideToggle('slow');
		$("#content04").hide();
		$("#content05").hide();
	});

	$(".btn4").click(function(){
		$("#content01").hide();
		$("#content02").hide();
		$("#content03").hide();
		$("#content04").slideToggle('slow');
		$("#content05").hide();
	});

	$(".btn5").click(function(){
		$("#content01").hide();
		$("#content02").hide();
		$("#content04").hide();
		$("#content05").slideToggle('slow');
	});

	    		
});
