// JavaScript Document

$(document).ready(function(){
 $("ul.side_menu li").click(function(){  
   //get the url from href attribute and launch the url  
   window.location=$(this).find("a").attr("href"); return false;  
 }); 
});

