function popup (url) {
		fenster = window.open(url, "Popupfenster", "width=670,height=440,resizable=yes");
		fenster.focus();
		return false;
		}
                
$(document).ready(function(){
//Hide the tooglebox when page load
$(".toggle").hide(); 
//slide up and down when hover over heading 2
$("a.click").click(function(){
// slide toggle effect set to slow you can set it to fast too.
$(this).next(".toggle").slideToggle("slow");
return true;
});
});

$(document).ready(function(){

	//Hide (Collapse) the toggle containers on load
	$(".togglebox1").hide(); 

	//Slide up and down on hover
	$("a.click").click(function(){
		$(this).next(".togglebox1").slideToggle("slow");
	});

});                
