/* Copyright 2009 Tom Bannister, Oceanwave Communications */

$(document).ready(function(){
	$("div.symptoms").hide();
	$("div.medicine").hide();
	$("div.blessings").hide();
	//$("li").css({ 'background-image' : 'none'});
	$("a.symptoms, a.medicine, a.blessings").click(function(event){
		event.preventDefault();
		});
	$("a.symptoms").click(function(){
		$("div.symptoms").show();
		});
	$("a.medicine").click(function(){
		$("div.medicine").show();
		});

	$("a.blessings").click(function(){
		$("div.blessings").show();
		});
});

