$(document).ready(function () {
 $('li, button').click(function(e) {
		if ($(this).attr('href')) {
			document.location=$(this).attr('href');
		} else if ($(this).attr('action')) {
			$("#action").val($(this).attr('action'));	
		}		
	});
});


function load_javascript(jsname) {
	var th = document.getElementsByTagName('head')[0];
	var s = document.createElement('script');
	s.setAttribute('type','text/javascript');
	s.setAttribute('src',jsname);
	th.appendChild(s);
}
