$(document).ready(function(){

	// we can put our custom jquery javascript stuff here....
	
	// show children of certain menu items
	// $('.show_hide_children > *').css("border","3px solid red");

	$('.show_hide_children > a').click(function() {
		$(this).parent().children(':not(a)').slideToggle('fast');
		return false;
	});
});
 

