$(document).ready(function () {
	// buttons
	$('input.button').hover(function () {
		$(this).toggleClass('hover');
	});
	
	// menu
	$('div.menu a').click(function () {
		if ($(this).parent().hasClass('parent')) {
			$('li.show_children').removeClass('show_children');
		
			$(this).parent().addClass('show_children');
			
			return false;
		}
	});
	
	$(document).click(function () {
		$('li.show_children').removeClass('show_children');
	});
});
