$(document).ready(function(){
	$("#swPageHeader").parents().eq(1).addClass("swPageHeaderBlock");
	$("#slide").insertBefore($("#swPageDiv").children(":first-child"));
	$("#panel").insertBefore($("#swPageDiv").children(":first-child"));
	
//Code for example B
$("input.buttonBslidedown").click(function(){ $("div.contentToChange").find("p.fourthparagraph:hidden").slideDown("slow"); });
$("input.buttonBslideup").click(function(){ $("div.contentToChange").find("p.fourthparagraph:visible").slideUp("slow"); });
//show code example B
$("a.codeButtonB").click(function(){$("pre.codeB").toggle()});

});
