//************************************************************************//
// JavaScript Document
//************************************************************************//
//RANDOM BLOG
function blog(){};
var blog = new Array(4);
blog[0] = '<a href="?com=blog&amp;id=cross_training"><span class="font_bold">Cross Training</span><br /><span class="font_italic">14-Sep-07</span><br />In the olden martial arts training days and in some martial arts clubs there is still a tunnel vision. This vision is focused only on their style of martial arts training not opening up to the different arts out there in our society. This vision needs to be changed in our modern day...</a>';
blog[1] = '<a href="?com=blog&amp;id=going_to_the_ground"><span class="font_bold">Going To The Ground</span><br /><span class="font_italic">14-Sep-07</span><br />Going to the ground has become the way to fight. It is not recommended to go to the ground for grappling in real life street fights; however statistics have more than 50% of all fights on the street ends up on the ground. Therefore we need to train for such situations even if...</a>';
blog[2] = '<a href="?com=blog&amp;id=street_effective_vital_points"><span class="font_bold">Street effective Vital Points</span><br /><span class="font_italic">14-Sep-07</span><br />They say you need an art of self-defence to get out of a situation on the street. This to me is not entirely true. There is no art when it comes to surviving a street encounter. This is where vital points come into consideration. Obviously we don\'t train...</a>';
blog[3] = '<a href="?com=blog&amp;id=woman_self_defence"><span class="font_bold">Woman\'s Self-Defence</span><br /><span class="font_italic">14-Sep-07</span><br />There are so many women attacked every year and almost none of them can defend themselves. That is because not many of them know how to defend themselves and those who do know is so shocked when it happens that they forget what to do when the attack comes...</a>';
index_blog = Math.floor(Math.random() * blog.length);
document.write(blog[index_blog]);
//************************************************************************//