$(document).ready(function () {


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


});