$(document).ready(function() {
													 
	// All details buttons
	$('.details-button').live('click', function() {
		var open = false;
		if($(this).hasClass('details-open')) {
			$(this).removeClass('details-open');
			$(this).addClass('details-closed');
			open = true;
		} else {
			$(this).removeClass('details-closed');
			$(this).addClass('details-open');
			open = false;
		}
		// Find next div
		$(this).next().each(function() {
			/*
			if(open) {
			} else {
			}
			*/
			$(this).toggle('slow');
		});
		
		return false;
	});
	
	$('#menu-main-menu').superfish();
	
	$('#menu-main-menu li a').live('click', function() {
		if($(this).html().indexOf("About") >= 0 || $(this).html().indexOf("Products") >= 0 || $(this).html().indexOf("Case") >= 0) {
			return false;
		}
	});
	
	/*
	$('#menu-main-menu li a').hover(function() {
		// Hover in
		$(this).next().show();
	}, function() {
		// Hover out
		$(this).next().hide();
	});
	*/
});
