jQuery(document).ready(function(){
						   
	var aText = new Array("Kung Fu is an excellent means of stress reduction, you'll fell energised and invigorated. As your fitness develops, so you will find your confidence and self esteem leaping to new heights like never before. And knowing you have the power and skills to defend yourself, it will give you that peace of mind.", "Training in Martial Arts is an investment in your child's future. From our youngest 6-10 year old 'Tiger Team' members, through to teens. We offer a safe, fun and positive learning environment where your child can develop self esteem, confidence, discipline and respect; all qualities needed for a successful and happy life.", "This ancient Chinese art of body, mind and harmony could be described as a combination of yoga and calisthenics. Chen and Wu Tai Chi help condition your muscles, improve coordination, balance, circulation, breathing and flexibility, it can regulate blood pressure and decrease your stress levels.");
	var aLinks = new Array("/kungfu", "/kungfu/junior", "/taichi")
	var aImages = new Array("url(wp-content/themes/buk_sing_skin/images/gs_adulttxt.jpg) no-repeat", "url(wp-content/themes/buk_sing_skin/images/gs_childrentxt.jpg) no-repeat", "url(wp-content/themes/buk_sing_skin/images/gs_taichitxt.jpg) no-repeat");
		
	jQuery(".aLink").mouseover(function(){
		var id = jQuery(this).attr('id').substring(jQuery(this).attr('id').lastIndexOf("_")+1);
		jQuery("#info").text(aText[id]);
		jQuery("#link").attr("href", aLinks[id]);
		jQuery("#txtIcon").css("background", aImages[id]);
		return false;
	});
	
	jQuery(".bestTime").hide();
	
	jQuery("#goodTimeYes").click(function(){
		jQuery(".bestTime").show("normal");
	});
	
	jQuery("#goodTimeNo").click(function(){
		jQuery(".bestTime").hide("normal");
	});
	
});