function boxslide() {





$('.box_container').each(function(i) {

	var obj = this;
	
	


	$(this).find('h2').css("margin-bottom", "0px").nextAll().wrapAll('<div class="show" />');
	$(this).find('.show').css("margin-top", "10px").hide();
	
	
	$(this).append('<a href="javascript:void(0)" class="toggle_box"> </a>');
	
	
	
	$(this).find('h2').css("cursor", "pointer");
		
	$(this).find('h2').click(function() {
  		$(obj).find('.show').slideToggle(400);
	});

	$(this).find('.toggle_box').click(function() {
  		$(obj).find('.show').slideToggle(400);
	});

	
});





}

$(document).ready(function() {
	$("a[href^='#']").live("click", function(event){
		document.location.hash=this.href.substr(this.href.indexOf('#')+1);
		return false;
	});
});
