$(document).ready(function() {

// Drop Down Menu (2 Levels)
$('#menu ul ul').hide(0.000000000000000000000000000000000000001);
$('#menu ul li a').addClass('nav_parent');
$('#menu ul ul a').removeClass('nav_parent');
$('#menu ul ul a').addClass('nav_child');

$('.nav_parent').bind('mouseenter', function() {
	if (($(this).next().is('ul')) && ($(this).next().is(':visible'))) {
	return false;
	} else if (($(this).next().is('ul')) && ($(this).next().is(':hidden'))) {
	$(this).next().show();
	return false;
	}
});

$('.nav_parent').parent().bind('mouseleave', function() {
	$('#menu ul ul:visible').hide();
});
// End of Menu

/* various widget actions */
$('.minimize').click(function() {$(this).parent('h3').next('.container').toggle()});
$('.close').click(function() {$(this).parent('h3').parent('.cat-widget').fadeOut('slow')});
$('.Sminimize').click(function() {$(this).parent('h2').next().toggle();});
$('.Sclose').click(function() {$(this).parent('h2').parent().fadeOut('slow')});

/* control visible stories */
$('ul.more_stories').each(function(index) {
$(this).children('li').slice(1).hide();
});

$('.minus').click(function() {
$(this).parent().next('ul').children('li:visible:last').hide();
});

$('.plus').click(function() {
$(this).parent().next('ul').children('li:hidden:first').show();
});

/* clear form */
clearInput('#feedemail');

});
