/* The special SLCR subnav - shows when mouseover on parent element */

$().ready(function() {
	$('#nav ul li a').mouseover(function() {
	 	var content_id = $(this).attr('id').split('_')[1];
	 	$('#subnav ul').hide();
		$('#subnav ul#children_' + content_id).fadeIn();
	})
})