$(document).ready(function(){ 
	// Add Google Tracking to forms
	$('form').each(function(i,e){
	  var onsubmit = $(e).attr("onsubmit");
	  var formMethod = $(e).attr("method");
	  if (onsubmit != null) {
		$(e).removeAttr('onsubmit');
		onsubmit = new Function(onsubmit);
	  }
	  $(e).submit(function(e){
		if (onsubmit != null) onsubmit();
		if((formMethod == 'post') || (formMethod == 'POST')) {
			_gaq.push(['_linkByPost', this]);
		} else {
			_gaq.push(['_linkByPost', this, true]);
		}
	  })
	})
});
